Skip to content

Commit

Permalink
add debug localhost entries
Browse files Browse the repository at this point in the history
  • Loading branch information
leastprivilege committed Sep 4, 2023
1 parent 6e1263c commit 7040082
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions src/Config.cs
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,16 @@ public static class Config
AllowedGrantTypes = GrantTypes.Code,
RequirePkce = false,

RedirectUris = { "https://www.certification.openid.net/test/a/duende-op/callback" },
PostLogoutRedirectUris = { "https://www.certification.openid.net/test/a/duende-op/post_logout_redirect" },
RedirectUris =
{
"https://www.certification.openid.net/test/a/duende-op/callback",
"https://localhost.emobix.co.uk:8443/test/a/duende-op/callback"
},
PostLogoutRedirectUris =
{
"https://www.certification.openid.net/test/a/duende-op/post_logout_redirect",
"https://localhost.emobix.co.uk:8443/test/a/duende-op/post_logout_redirect"
},

AllowOfflineAccess = true,
AllowedScopes = { "openid", "profile", "email", "phone", "address" }
Expand Down

0 comments on commit 7040082

Please sign in to comment.