()
| 110 | /** RFC 6749 `state` — an unguessable correlation token minted by `oauth.start` |
| 111 | * and redeemed by `oauth.complete`. */ |
| 112 | export const createOAuthState = (): string => oauth.generateRandomState(); |
| 113 | |
| 114 | // --------------------------------------------------------------------------- |
| 115 | // Authorization URL builder |