OAuthCredentialOptions interface

定義初始化 OAuthCredential 的選項。

如果 ID 權杖有 Nonce 宣告,則須一併提供原始 Nonce。

簽名:

export interface OAuthCredentialOptions 

屬性

屬性 類型 說明
accessToken 字串 用於初始化 OAuthCredential 的 OAuth 存取權杖。
idToken 字串 用於初始化 OAuthCredential 的 OAuth ID 權杖。
rawNonce 字串 與 ID 權杖相關聯的原始 Nonce。

OAuthCredentialOptions.accessToken

用於初始化 OAuthCredential 的 OAuth 存取權杖。

簽名:

accessToken?: string;

OAuthCredentialOptions.idToken

用於初始化 OAuthCredential 的 OAuth ID 權杖。

簽名:

idToken?: string;

OAuthCredentialOptions.rawNonce

與 ID 權杖相關聯的原始 Nonce。

提供含有 Nonce 欄位的 ID 權杖時,必須提供這個參數。原始 Nonce 的 SHA-256 雜湊必須與 ID 權杖中的 Nonce 欄位相符。

簽名:

rawNonce?: string;