(verifier: string)
| 106 | export const createPkceCodeVerifier = (): string => oauth.generateRandomCodeVerifier(); |
| 107 | |
| 108 | export const createPkceCodeChallenge = (verifier: string): Promise<string> => |
| 109 | oauth.calculatePKCECodeChallenge(verifier); |
| 110 | |
| 111 | /** RFC 6749 `state` — an unguessable correlation token minted by `oauth.start` |
| 112 | * and redeemed by `oauth.complete`. */ |
no outgoing calls
no test coverage detected