Supabase Auth Token Introspection Endpoint #33129
Unanswered
wdoppenberg
asked this question in
Feature Requests
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Would it be possible to add (access) token introspection to Auth? This would help with backend-to-backend token validation, and is hopefully not a great deal of work.
Prior art
Doing token introspection with Keycloak is as follows:
Returns
{ "active": true, "exp": 1516239022, "sub": "user123", "client_id": "my-client", "scope": "openid email profile" }Please let me know your thoughts.
All reactions