ApplicationVerifier interface

驗證網域和防範濫用行為的驗證器。

目前,唯一的實作方式是 RecaptchaVerifier

簽名:

export interface ApplicationVerifier 

屬性

屬性 類型 說明
類型 字串 識別應用程式驗證器的類型 (例如「recaptcha」)。

方法

方法 說明
verify() 執行驗證程序。

ApplicationVerifier.type

識別應用程式驗證器的類型 (例如「recaptcha」)。

簽名:

readonly type: string;

ApplicationVerifier.verify()

執行驗證程序。

簽名:

verify(): Promise<string>;

傳回:

承諾<字串>

憑證的承諾,可用於宣告要求的有效性。