-
|
I am working on an HTTP proxy, and among its responsibilities it needs to pass through an access token to the upstream server. Before doing so, I want to make sure the access token is valid and not expired. Using
So in all cases, the token needs to contain the client's audience to pass validation. What is the point of the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
|
By the way, the documentation of I figure this is a bug, as validation passes only if aud contains the client_id. To maintain compatibility, I would suggest that:
|
Beta Was this translation helpful? Give feedback.
trusted_audiencesis for something different:https://openid.net/specs/openid-connect-core-1_0.html
According to this spec, we have to validate that
auddoes not contain untrusted v…