You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 28, 2023. It is now read-only.
When the 'sub' doesn't match the error message reports the 'iss' claim is mismatched.
if (subFromPrevIdToken && subFromPrevIdToken !== jwtClaims.sub)
return self.fail('After redeeming the code, iss in id_token from authorize_endpoint does not match iss in id_token from token_endpoint');
The text was updated successfully, but these errors were encountered:
brentschmaltz
changed the title
Error message is for 'sub' mismatch is incorrect after redeeming 'code'
Error message for 'sub' mismatch is incorrect after redeeming 'code'
Sep 8, 2016
(1) Rewrote the metadata loading and the configuration code. Restructured OIDCStrategy.
(2) #188 B2C mocha tests (partially done, waiting for the AAD fix of missing nonce to add test for hybrid/code flow)
(3) #165 rename 'callbackURL' and 'returnURL' to 'redirectUrl'.
(4) #189 Extensibility to allow issuer validation when going against commend end point
(5) #194 error message for 'sub' mismatch is incorrect after redeeming 'code'
(6) #218 missing email claim for B2C
When the 'sub' doesn't match the error message reports the 'iss' claim is mismatched.
if (subFromPrevIdToken && subFromPrevIdToken !== jwtClaims.sub)
return self.fail('After redeeming the code, iss in id_token from authorize_endpoint does not match iss in id_token from token_endpoint');
The text was updated successfully, but these errors were encountered: