[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2022-07-22 UTC."],[],[],null,["# OAuthCredentialOptions interface\n\nDefines the options for initializing an [OAuthCredential](./auth.oauthcredential.md#oauthcredential_class).\n\nFor ID tokens with nonce claim, the raw nonce has to also be provided.\n\n**Signature:** \n\n export interface OAuthCredentialOptions \n\nProperties\n----------\n\n| Property | Type | Description |\n|-----------------------------------------------------------------------------------|--------|-------------------------------------------------------------------------------------------------------------------|\n| [accessToken](./auth.oauthcredentialoptions.md#oauthcredentialoptionsaccesstoken) | string | The OAuth access token used to initialize the [OAuthCredential](./auth.oauthcredential.md#oauthcredential_class). |\n| [idToken](./auth.oauthcredentialoptions.md#oauthcredentialoptionsidtoken) | string | The OAuth ID token used to initialize the [OAuthCredential](./auth.oauthcredential.md#oauthcredential_class). |\n| [rawNonce](./auth.oauthcredentialoptions.md#oauthcredentialoptionsrawnonce) | string | The raw nonce associated with the ID token. |\n\nOAuthCredentialOptions.accessToken\n----------------------------------\n\nThe OAuth access token used to initialize the [OAuthCredential](./auth.oauthcredential.md#oauthcredential_class).\n\n**Signature:** \n\n accessToken?: string;\n\nOAuthCredentialOptions.idToken\n------------------------------\n\nThe OAuth ID token used to initialize the [OAuthCredential](./auth.oauthcredential.md#oauthcredential_class).\n\n**Signature:** \n\n idToken?: string;\n\nOAuthCredentialOptions.rawNonce\n-------------------------------\n\nThe raw nonce associated with the ID token.\n\nIt 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.\n\n**Signature:** \n\n rawNonce?: string;"]]