Skip to content

Commit c2300fa

Browse files
authored
Small fix.
1 parent 55ccdba commit c2300fa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

auth/email/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ def verify_email(token, email):
202202
my_data = dict()
203203
my_data["email"] = email
204204
my_data["idToken"] = token
205-
my_data["requestType"] = "EMAIL_VERIFY"
205+
my_data["requestType"] = "VERIFY_EMAIL"
206206

207207
json_data = json.dumps(my_data).encode()
208208
headers = {"Content-Type": "application/json"}
@@ -420,4 +420,4 @@ A successful response will look like the following JSON structure:
420420

421421
Once you have got the `access_token` you are ready to perform secure operations against the Firebase Database and Firebase Storage services.
422422

423-
In this guide and examples, the `access_token` and `auth_token` represent the same value.
423+
In this guide and examples, the `access_token` and `auth_token` represent the same value.

0 commit comments

Comments
 (0)