Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

OidcImplicitService is a simple ImplicitGrantService extension which enforces OIDC specific constraints and adds IdToken to the client response.  To include the idToken, you should add OidcIdTokenProvider to OidcImplicitService.

Hybrid Flow

OidcHybridService supports Hybrid Flow by delegating to both OidcImplicitService and OidcAuthorizationCodeService.  To include the idToken, you should add OidcIdTokenProvider to OidcHybridService.

UserInfo Endpoint

UserInfoService returns UserInfo. It checks UserInfoProvider first, next - OidcUserSubject, and finally it defaults to converting the existing IdToken to UserInfo.

...