Firebase JWT decoding utility for Rust.
If you have a Rust server and plan to have API for verifying your firebase users' client token, then it's just for you!
It only contains small utility to decode your client token.
Read more:
https://firebase.google.com/docs/auth/admin/verify-id-tokens#verifyidtokensusingathird-partyjwt_library
In your frontend, you can get your uid + client-token by using Firebase Client SDK.
Sample: https://firebase.google.com/docs/auth/admin/verify-id-tokens#retrieveidtokensonclients
Then your frontend can hit the backend Rust API and send over uid+client-token to the HTTP Header/POST body (up to you), which will be passed to verify_token(uid, client_token)
util.
Add FIREBASE_PROJECT_ID
environment variable to your backend on local and production server
Backend Rust will verify and send back the JWT claim response (including extracted user's data, and verified user_id) back as json
```rs use firebasejwtrs::*; use jsonwebtoken::TokenData; use std::error::Error;
let uid = "your-user-uid"; let client_token = "your-client-token";
let result: Result
match result {
Ok(res: TokenData
MIT