Function
expiresAtFrom
(token: OAuth2TokenResponse)
Source from the content-addressed store, hash-verified
| 397 | `oauth-client:${owner}:${slug}:secret`; |
| 398 | |
| 399 | const expiresAtFrom = (token: OAuth2TokenResponse): number | null => |
| 400 | typeof token.expires_in === "number" ? Date.now() + token.expires_in * 1000 : null; |
| 401 | |
| 402 | /** Error message surfaced when a redirect-requiring OAuth flow runs on an |
| 403 | * executor that was constructed without a `redirectUri`. Previously this path |
Tested by
no test coverage detected