We have a token info endpoint that is secured via ...
# talk-oathkeeper
a
We have a token info endpoint that is secured via resource-id and secret rather than the oauth client credentials. Is there a way we can use the
oauth2_introspection
handler or any other authentication handler that works with this scheme? Here is a sample curl post to our tokeninfo endpoint:
Copy code
curl -X POST \
  <https://auth.example.com/oauth2/v1/tokeninfo> \
  -H 'Accept: */*' \
  -H 'Authorization: Basic <Base64encode(resourceID:resourceSecret)>' \
  -H 'Content-Type: application/x-www-form-urlencoded' \
  -H 'Host: <http://auth.example.com|auth.example.com>' \
  -d 'access_token=<TheAccessTokenYouHave>&includeUserRole=false'
Just bumping this thread. Is this not possible ?
Bump