[ Web Proxy ]
URL:
Viewing: https://firebase.google.com/docs/reference/js/auth.actioncodeurl [Back]  [Original]

ActionCodeURL class  |  Firebase JavaScript API reference Skip to main content
Overview Fundamentals AI Build Run Reference Samples
Firebase [Firebase]
Send feedback

ActionCodeURL class Stay organized with collections Save and categorize content based on your preferences.

A utility class to parse email action URLs such as password reset, email verification, email link sign in, etc.

The constructor for this class is marked as internal. Third-party code should not call the constructor directly or create subclasses that extend the ActionCodeURL class.

Signature:

export declare class ActionCodeURL 

Properties

Property Modifiers Type Description
apiKey string The API key of the email action link.
code string The action code of the email action link.
continueUrl string | null The continue URL of the email action link. Null if not provided.
languageCode string | null The language code of the email action link. Null if not provided.
operation string The action performed by the email action link. It returns from one of the types from ActionCodeInfo
tenantId string | null The tenant ID of the email action link. Null if the email action is from the parent project.

Methods

Method Modifiers Description
parseLink(link) static Parses the email action link string and returns an ActionCodeURL if the link is valid, otherwise returns null.

ActionCodeURL.apiKey

The API key of the email action link.

Signature:

readonly apiKey: string;

ActionCodeURL.code

The action code of the email action link.

Signature:

readonly code: string;

ActionCodeURL.continueUrl

The continue URL of the email action link. Null if not provided.

Signature:

readonly continueUrl: string | null;

ActionCodeURL.languageCode

The language code of the email action link. Null if not provided.

Signature:

readonly languageCode: string | null;

ActionCodeURL.operation

The action performed by the email action link. It returns from one of the types from ActionCodeInfo

Signature:

readonly operation: string;

ActionCodeURL.tenantId

The tenant ID of the email action link. Null if the email action is from the parent project.

Signature:

readonly tenantId: string | null;

Parses the email action link string and returns an ActionCodeURL if the link is valid, otherwise returns null.

Signature:

static parseLink(link: string): ActionCodeURL | null;

Parameters

Parameter Type Description
link string The email action link string.

Returns:

ActionCodeURL | null

The ActionCodeURL object, or null if the link is invalid.

Send feedback

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2024-01-19 UTC.

Need to tell us more? [[["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 2024-01-19 UTC."],[],[]]

Web Proxy Viewer  |  New URL  |  Original Page