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
I have managed to add scope on the jwt bearer grant type but it won't validate the scope like other grant types are doing by default.
$jwt = generateJWT($private_key, $client_id, $user_id, $scope, $audience, $expires, $nbf);
{ access_token: "30dd4b59463766d4704a3d2242f6e8b40145b79c", expires_in: 3600, token_type: "Bearer", scope: "unknown_scope" }
unknow_scope is not supported and other grant type validate that except for jwt bearer
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have managed to add scope on the jwt bearer grant type but it won't validate the scope like other grant types are doing by default.
unknow_scope is not supported and other grant type validate that except for jwt bearer
The text was updated successfully, but these errors were encountered: