Skip to content

Commit

Permalink
fix endpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
damienbod committed Dec 18, 2024
1 parent c54fe36 commit 4512a32
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions OpeniddictServer/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -144,10 +144,10 @@ public void ConfigureServices(IServiceCollection services)
options.SetAuthorizationEndpointUris("connect/authorize")
//.SetDeviceEndpointUris("connect/device")
.SetIntrospectionEndpointUris("connect/introspect")
.SetLogoutEndpointUris("connect/logout")
.SetEndSessionEndpointUris("connect/logout")
.SetTokenEndpointUris("connect/token")
.SetUserinfoEndpointUris("connect/userinfo")
.SetVerificationEndpointUris("connect/verify");
.SetUserInfoEndpointUris("connect/userinfo")
.SetEndUserVerificationEndpointUris("connect/verify");

options.AllowAuthorizationCodeFlow()
.AllowHybridFlow()
Expand All @@ -161,9 +161,9 @@ public void ConfigureServices(IServiceCollection services)

options.UseAspNetCore()
.EnableAuthorizationEndpointPassthrough()
.EnableLogoutEndpointPassthrough()
.EnableEndSessionEndpointPassthrough()
.EnableTokenEndpointPassthrough()
.EnableUserinfoEndpointPassthrough()
.EnableUserInfoEndpointPassthrough()
.EnableStatusCodePagesIntegration();
})
.AddValidation(options =>
Expand Down

0 comments on commit 4512a32

Please sign in to comment.