We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48701ca commit b4c2b18Copy full SHA for b4c2b18
endpoints/getting-started/clients/service_to_service_gae_default/main.py
@@ -43,8 +43,9 @@ def generate_jwt():
43
# iss is the Google App Engine default service account email.
44
'iss': DEFAULT_SERVICE_ACCOUNT,
45
'sub': DEFAULT_SERVICE_ACCOUNT,
46
- # aud must match 'audience' in the security configuration in your
47
- # OpenAPI spec.It can be any string.
+ # Typically, the audience is the hostname of your API. The aud
+ # defined here must match the audience in the security configuration
48
+ # in yourOpenAPI spec.
49
'aud': 'echo.endpoints.sample.google.com',
50
"email": DEFAULT_SERVICE_ACCOUNT
51
})
0 commit comments