Venky
Venky

Reputation: 406

Generate Access Token from JWT

I am developing micro services on Google Cloud that take the JWT of the logged in user in their Authorization request header. Somewhere, down the line, I need to generate an access token from the JWT - like say to create a Storage object with the user`s credentials. How can I generate an access token from the JWT token ?

Upvotes: 0

Views: 703

Answers (1)

identigral
identigral

Reputation: 3949

This error usually means it can't find a service account based on the iss(uer) claim in the token. Did you create and authorize a service account and reference it in the JWT?

Upvotes: 1

Related Questions