Skip to content

Commit

Permalink
Set RequireHttpsMetadata = false to allow HTTP traffic
Browse files Browse the repository at this point in the history
  • Loading branch information
hsluoyz committed Dec 1, 2023
1 parent 38ee767 commit 32a9c83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Casdoor.Client/Options/CasdoorOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class CasdoorOptions
public string ApplicationType { get; set; } = string.Empty;
public string CallbackPath { get; set; } = "/casdoor/signin-callback";
public string Scope { get; set; } = "openid profile email";
public bool RequireHttpsMetadata { get; set; } = true;
public bool RequireHttpsMetadata { get; set; } = false;
public CasdoorProtocolsOptions Protocols { get; set; } = new();
public CasdoorPathOptions Path { get; set; } = new();
}
Expand Down

0 comments on commit 32a9c83

Please sign in to comment.