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