authentication - How to provide your own JWT signing key to Firebase Auth -
my users logging in using custom authentication system on website, returning jwt signed company's private key. i'm trying enable users login firebase described in authenticate firebase in javascript using custom authentication system.
if understand correctly reading instruction i'm supposed to:
- create service account in firebase
- download private key
- copy private key authentication server
- sign jwts using key
however, need stick using company's key sign jwt.
is possible? if so, how can provide company's public key firebase able decode jwt? or understanding flow wrong?
there no way specify key firebase should use decoding jwt. requirement doesn't make sense, since you're interacting firebase's backend services. if interact multiple backend systems, you'll need mint separate token each.
Comments
Post a Comment