We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c587f55 commit 169d749Copy full SHA for 169d749
projects/lib/src/oauth-service.ts
@@ -2068,7 +2068,7 @@ export class OAuthService extends AuthConfig implements OnDestroy {
2068
// addressing https://github.com/manfredsteyer/angular-oauth2-oidc/issues/661
2069
// i.e. Based on spec the at_hash check is only true for implicit code flow on Ping Federate
2070
// https://www.pingidentity.com/developer/en/resources/openid-connect-developers-guide.html
2071
- if (this.hasOwnProperty('responseType') && this.responseType === 'code') {
+ if (this.hasOwnProperty('responseType') && (this.responseType === 'code' || this.responseType === 'id_token')) {
2072
this.disableAtHashCheck = true;
2073
}
2074
if (
0 commit comments