-
Notifications
You must be signed in to change notification settings - Fork 893
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No "identities" property in ParseToken interface #6218
Labels
Comments
kyun
changed the title
No identities property in ParseToken interface
No "identities" property in ParseToken interface
May 4, 2022
Thanks for the report @kyun, the linked PR fixes the issue -- it should be available soon (keep an eye on the release notes) |
This was referenced May 24, 2022
Closed
Closed
Merged
Merged
What are all the possible key values for an identity? |
@marcusx2 I have no idea what are all the possible key values for identity because I had used it only with Twitter Auth. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
[REQUIRED] Describe your environment
[REQUIRED] Describe the problem
Steps to reproduce:
I've been using firebase v8, and yesterday I migrated v8 to v9.
With firebase v8, I used to get the userId below code.
but after upgrading to v9, I get a type error
For testing, I signed up using Twitter, and I got a
ParsedToken
.and I printed that token on the console.
identities
is existed.but there are no
identities
props in@firebase/auth/dist/auth-public.d.ts
I think it should be updated like this.
I compare v8 to v9, and I've found why it happened.
In version 9
claims
defined asParsedToken
in v9,but v8 is
The text was updated successfully, but these errors were encountered: