We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When making introspect calls I am not getting an "iss" field, despite having set the ISSUER env var.
Steps to reproduce:
docker run -d -e ISSUER=myawesomeissuer -e FORCE_ROOT_CLIENT_CREDENTIALS="admin:admin" -p 4445:4444 oryd/hydra:v0.7.7 TOKEN1=$(curl -s -kv -XPOST \ --user 'admin:admin' \ --url https://localhost:4445/oauth2/token \ --header 'content-type: application/x-www-form-urlencoded' \ --data 'grant_type=client_credentials&scope=hydra' | jq -r .access_token) TOKEN2=$(curl -s -kv -XPOST \ --user 'admin:admin' \ --url https://localhost:4445/oauth2/token \ --header 'content-type: application/x-www-form-urlencoded' \ --data 'grant_type=client_credentials&scope=hydra' | jq -r .access_token) curl -XPOST https://localhost:4445/oauth2/introspect -H "Authorization: bearer $TOKEN1" -d "token=$TOKEN2" -k {"active":true,"scope":"hydra","client_id":"admin","sub":"admin","exp":1490274665,"iat":1490271065,"aud":"admin"}
Expected result: The introspect calls contains an "iss" field set to $ISSUER.
$ISSUER
The text was updated successfully, but these errors were encountered:
I just tried the same thing with oryd/hydra:latest with the same result.
oryd/hydra:latest
Sorry, something went wrong.
Thank you for reporting this
oauth2/introspect: send issuer in introspection
94d6789
Closes #399
a9f500b
aeneasr
No branches or pull requests
When making introspect calls I am not getting an "iss" field, despite having set the ISSUER env var.
Steps to reproduce:
Expected result: The introspect calls contains an "iss" field set to
$ISSUER
.The text was updated successfully, but these errors were encountered: