Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
I've installed the package called Sustainsys.Saml2 this comes with a built in way to register it much like the OIDC providers.
However the button simply does not show up on the backoffice login screen, this is my code:
backOfficeAuthenticationBuilder.AddSaml2( backOfficeAuthenticationBuilder.SchemeForBackOffice(SamlUserExternalLoginProviderOptions.SchemeName), options => { options.SignInScheme = CookieAuthenticationDefaults.AuthenticationScheme; options.SPOptions.EntityId = new EntityId(""); var identityProvider = new IdentityProvider(new EntityId(""), options.SPOptions) { SingleSignOnServiceUrl = new Uri(""), Binding = Saml2BindingType.HttpRedirect, }; identityProvider.SigningKeys.AddConfiguredKey(new X509Certificate2("testcert.cert")); options.IdentityProviders.Add(identityProvider); } );
Pulling my hair out here 😅 It looks like it "should" work
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Custom backoffice provider doesn't show
I've installed the package called Sustainsys.Saml2 this comes with a built in way to register it much like the OIDC providers.
However the button simply does not show up on the backoffice login screen, this is my code:
Pulling my hair out here 😅 It looks like it "should" work
is working on a reply...