send_email_verification {firebase.auth.rest} | R Documentation |
Send email verification
Description
Send email verification
Usage
send_email_verification(id_token)
Arguments
id_token |
The Firebase ID token of the user to verify. |
Details
Visit Firebase Auth REST API docs for more details
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
-
-
Examples
## Not run:
send_email_verification("id-token-goes-here")
## End(Not run)
[Package firebase.auth.rest version 1.0.1 Index]