Skip to contents

Send email verification

Usage

frbs_send_email_verification(id_token)

Arguments

id_token

The Firebase ID token of the user to verify.

Value

A named list with the following items:

  • email: The email of the account.

  • error:

    • NULL if no error code in response

    • A list of 2 if response was an error:

      • code: Error code

      • message: Error message

Details

Visit Firebase Auth REST API docs for more details

Examples

if (FALSE) {
frbs_send_email_verification("id-token-goes-here")
}