Releases: manfredsteyer/angular-oauth2-oidc
Releases · manfredsteyer/angular-oauth2-oidc
2.1.2
2.1
New Features in 2.1
- New Config API (the original one is still supported, see readme)
- New convenience methods in OAuthService to streamline default tasks:
setupAutomaticSilentRefresh()
loadDiscoveryDocumentAndTryLogin()
- Single Sign out through Session Status Change Notification according to the OpenID Connect Session Management specs. This means, you can be notified when the user logs out using at the login provider.
- Possibility to define the ValidationHandler, the Config as well as the OAuthStorage via DI
- Better structured documentation
Disable State-Check
Added a flag to disable OAuth2-style state check for edge cases. Also see generated docs for this.
return this.oauthService.tryLogin({
disableOAuth2StateCheck: true
});