Get hands-on experience with 20+ free Google Cloud products and $300 in free credit for new customers.

API Gateway JWT Token authentication

Instead of Apikey I want to add security based on JWT token authentication.

 

securityDefinitions:
  jwtAuth:
    authorizationUrl: ""
    flow: "implicit"
    type: "oauth2"
    x-google-jwks_uri: "uri"
    x-google-audiences: "PROJECT-ID"
 
 
 
and in the path with
  -jwtAuth: []

In the request I have to send Authorization: Bearer {token} instead of that I want to add it in idtoken parameter in the header.

How to achieve that?

0 2 892
2 REPLIES 2
Top Labels in this Space
Top Solution Authors