You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 19, 2026. It is now read-only.
According to documentation below, allowed_clients_id is supported in both @endpoints.api and @endpoints.method, with the specific setting override the general setting.
When I have allowed_clients_id defined in @endpoints.method and it validates the JWT fine.
When I moved allowed_clients_id to @endpoints.api, it gives the following error:
Cannot decode and verify the auth token. The backend will not be able to retrieve user info
Traceback (most recent call last):
File "/base/data/home/apps/p~cds-dev-155819/stdendpoints:test-client-id.401183766245752589/lib/endpoints_management/control/wsgi.py", line 593, in __call__
service_name)
File "/base/data/home/apps/p~cds-dev-155819/stdendpoints:test-client-id.401183766245752589/lib/endpoints_management/auth/tokens.py", line 104, in authenticate
raise suppliers.UnauthenticatedException(u"Audiences not allowed")
UnauthenticatedException: Audiences not allowed
According to documentation below, allowed_clients_id is supported in both @endpoints.api and @endpoints.method, with the specific setting override the general setting.
When I have allowed_clients_id defined in @endpoints.method and it validates the JWT fine.
When I moved allowed_clients_id to @endpoints.api, it gives the following error: