Skip to content

Commit

Permalink
Remove "openid" from the list of scopes attached to the client regist…
Browse files Browse the repository at this point in the history
…ration used in the Zirku C# client
  • Loading branch information
kevinchalet committed Apr 16, 2024
1 parent 61b355f commit d7575f5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions samples/Zirku/Zirku.Client1/Program.cs
Expand Up @@ -6,7 +6,6 @@
using Microsoft.Extensions.Logging;
using OpenIddict.Client;
using Zirku.Client1;
using static OpenIddict.Abstractions.OpenIddictConstants;

var host = new HostBuilder()
.ConfigureLogging(options => options.AddDebug())
Expand Down Expand Up @@ -58,7 +57,7 @@
ClientId = "console_app",
RedirectUri = new Uri("/", UriKind.Relative),
Scopes = { Scopes.OpenId, "api1", "api2" }
Scopes = { "api1", "api2" }
});
});
Expand Down

0 comments on commit d7575f5

Please sign in to comment.