David Karlsson
David Karlsson

Reputation: 9716

AWS JWT authorizer not supporting google issuer

That means the google tokens never be accepted by the authorizer since the token iss claim is missing: https

Any one solved this?

Upvotes: 1

Views: 628

Answers (1)

David Karlsson
David Karlsson

Reputation: 9716

if using some of the legacy oauth flow to authorize your app. you may get a token with the issuer above, make sure to use the OIDC config:

https://accounts.google.com/.well-known/openid-configuration

Then the issuer in the id-token should match the format required by AWS JWT-Authorizer (and specified in the OIDC spec ).

Upvotes: 1

Related Questions