(verifier: string)
| 175 | export const createPkceCodeVerifier = (): string => oauth.generateRandomCodeVerifier(); |
| 176 | |
| 177 | export const createPkceCodeChallenge = (verifier: string): Promise<string> => |
| 178 | oauth.calculatePKCECodeChallenge(verifier); |
| 179 | |
| 180 | /** RFC 6749 `state` — an unguessable correlation token minted by `oauth.start` |
| 181 | * and redeemed by `oauth.complete`. */ |
no outgoing calls
no test coverage detected