IdentityServer4
IdentityServer4 copied to clipboard
OpenID Connect and OAuth 2.0 Framework for ASP.NET Core
### Issue / Steps to reproduce the problem 1. Make an authorize request with wrong redirect_uri and response_type is { id_token token } 2. Catch TokenIssuedFailureEvent. 3. GrantType is Null,...
To allow the use case described in #5022 it is necessary to get more data into the DeviceAuthorizationSuccessEvent **What issue does this PR address?** #5022 **Does this PR introduce a...
**At this point we cannot accept PRs for new features, only bugfixes. Thanks!** **What issue does this PR address?** Upon "grant_type" of "refresh_token", newly generated refresh token was being save...
Here is the setup for the Identity server configuration ``` var builder = services.AddIdentityServer(options => { options.Events.RaiseErrorEvents = true; options.Events.RaiseInformationEvents = true; options.Events.RaiseFailureEvents = true; options.Events.RaiseSuccessEvents = true; options.EmitStaticAudienceClaim =...
Hi, I have several IDS running but I update one of them to the latest version in net5.0 and role is not include access_token any more installing nuget packages: ```...
…s.ClaimsIdentity.EmailClaimType = JwtClaimTypes.Email; **At this point we cannot accept PRs for new features, only bugfixes. Thanks!** **What issue does this PR address?** avoid "email" claim duplication when using AspNetIdentity with...
Fixes 4963 **At this point we cannot accept PRs for new features, only bugfixes. Thanks!** **What issue does this PR address?** **Does this PR introduce a breaking change?** **Please check...
I want to show a notification on my main application, when a new device registers via the device workflow. In this notification, I want to allow the user to directly...