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