docs-devsite/auth.oauthcredentialoptions.md
Project: /docs/reference/js/_project.yaml Book: /docs/reference/_book.yaml page_type: reference
{% comment %} DO NOT EDIT THIS FILE! This is generated by the JS SDK team, and any local changes will be overwritten. Changes should be made in the source code at https://github.com/firebase/firebase-js-sdk {% endcomment %}
Defines the options for initializing an OAuthCredential<!-- -->.
For ID tokens with nonce claim, the raw nonce has to also be provided.
<b>Signature:</b>
export interface OAuthCredentialOptions
| Property | Type | Description |
|---|---|---|
| accessToken | string | The OAuth access token used to initialize the OAuthCredential<!-- -->. |
| idToken | string | The OAuth ID token used to initialize the OAuthCredential<!-- -->. |
| rawNonce | string | The raw nonce associated with the ID token. |
The OAuth access token used to initialize the OAuthCredential<!-- -->.
<b>Signature:</b>
accessToken?: string;
The OAuth ID token used to initialize the OAuthCredential<!-- -->.
<b>Signature:</b>
idToken?: string;
The raw nonce associated with the ID token.
It is required when an ID token with a nonce field is provided. The SHA-256 hash of the raw nonce must match the nonce field in the ID token.
<b>Signature:</b>
rawNonce?: string;