docs-devsite/auth.applicationverifier.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 %}
A verifier for domain verification and abuse prevention.
Currently, the only implementation is RecaptchaVerifier<!-- -->.
<b>Signature:</b>
export interface ApplicationVerifier
| Property | Type | Description |
|---|---|---|
| type | string | Identifies the type of application verifier (e.g. "recaptcha"). |
| Method | Description |
|---|---|
| verify() | Executes the verification process. |
Identifies the type of application verifier (e.g. "recaptcha").
<b>Signature:</b>
readonly type: string;
Executes the verification process.
<b>Signature:</b>
verify(): Promise<string>;
<b>Returns:</b>
Promise<string>
A Promise for a token that can be used to assert the validity of a request.