(verifier: string)
| 159 | export const createPkceCodeVerifier = (): string => oauth.generateRandomCodeVerifier(); |
| 160 | |
| 161 | export const createPkceCodeChallenge = (verifier: string): Promise<string> => |
| 162 | oauth.calculatePKCECodeChallenge(verifier); |
| 163 | |
| 164 | /** RFC 6749 `state` — an unguessable correlation token minted by `oauth.start` |
| 165 | * and redeemed by `oauth.complete`. */ |
no outgoing calls
no test coverage detected