Reputation: 53
I was wondering if it would be possible to grab JWT Tokens from Firebase using Dart in Flutter, it seems that I can grab the UserID but can't seem to find a way to get JWT Tokens.
Thanks
Upvotes: 4
Views: 1812
Reputation: 598797
You can get the JWT for the current user by calling getIdToken()
on the user object.
Upvotes: 4