We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1178001 commit fb79b38Copy full SHA for fb79b38
openid_connect.js
@@ -111,12 +111,6 @@ function validateIdToken(req,res) {
111
valid_token = false;
112
}
113
114
- // Check iss relates to $oidc_authz_endpoint
115
- if (!req.variables.oidc_authz_endpoint.startsWith(req.variables.jwt_claim_iss)) {
116
- req.error("OIDC ID Token validation error: iss claim (" + req.variables.jwt_claim_iss + ") is not found in $oidc_authz_endpoint");
117
- valid_token = false;
118
- }
119
-
120
// Audience matching
121
if (req.variables.jwt_claim_aud != req.variables.oidc_client) {
122
req.error("OIDC ID Token validation error: aud claim (" + req.variables.jwt_claim_aud + ") does not match $oidc_client");
0 commit comments