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.
audiences
1 parent 79ff40c commit 7835504Copy full SHA for 7835504
appengine/standard/endpoints-frameworks-v2/backend/main.py
@@ -55,7 +55,7 @@ def echo(self, request):
55
# Require auth tokens to have the following scopes to access this API.
56
scopes=[endpoints.EMAIL_SCOPE],
57
# OAuth2 audiences allowed in incoming tokens.
58
- audiences='your-oauth-client-id.com')
+ audiences=['your-oauth-client-id.com'])
59
def get_user_email(self, request):
60
user = endpoints.get_current_user()
61
# If there's no user defined, the request was unauthenticated, so we
0 commit comments