Skip to content

cloudfire-auth / OAuthResponseType

Interface: OAuthResponseType ​

Defined in: types/firebase-admin/auth-config.ts:537

The interface representing OIDC provider's response object for OAuth authorization flow. One of the following settings is required:

  • Set code to true for the code flow.
  • Set idToken to true for the ID token flow.

Properties ​

code? ​

optional code: boolean

Defined in: types/firebase-admin/auth-config.ts:545

Whether authorization code is returned from IdP's authorization endpoint.


idToken? ​

optional idToken: boolean

Defined in: types/firebase-admin/auth-config.ts:541

Whether ID token is returned from IdP's authorization endpoint.