Firebase ID tokens on clients
When a user or device successfully signs in, Firebase creates a corresponding ID token that uniquely identifies them and grants them access to several resources, such as Firebase Realtime Database and Cloud Storage. You can re-use that ID token to identify the user or device on your custom backend server. To retrieve the ID token from the client, make sure the user is signed in and then get the ID token from the signed-in user.(Reference: https://firebase.google.com/docs/auth/admin/verify-id-tokens )
Firebase ID token example
The following is an example of Firebase Id Token (JWT) that has been pasted to jwt.io and got itself decoded by jwt.ioHow to verify using jwt.io?
Read here: https://programming-steps.blogspot.com/2017/04/how-to-verify-firebase-id-tokens-using.htmlVerifying Firebase ID using Google Apps Script with jsrsasign JWT Library
201704, 20170423, JWT, FIREBASE
No comments:
Post a Comment