dependabot[bot] on nuget
Bump System.Security.Cryptograp… (compare)
dependabot[bot] on nuget
Bump System.Security.Cryptograp… (compare)
dependabot[bot] on nuget
Bump System.Security.Cryptograp… (compare)
dependabot[bot] on nuget
Bump System.Security.Cryptograp… (compare)
dependabot[bot] on nuget
Bump System.Security.Cryptograp… (compare)
dependabot[bot] on nuget
Bump System.Security.Cryptograp… (compare)
authenticationBuilder.AddSaml2("googlesuite", "Google Suite", options =>
{
options.SPOptions.EntityId = new EntityId(Configuration["Authentication:GoogleSuite:Issuer"]);
var identityProvider = new IdentityProvider(new EntityId("https://accounts.google.com/o/saml2?idpid=ID"),
options.SPOptions)
{
AllowUnsolicitedAuthnResponse = true,
SingleSignOnServiceUrl = new Uri("https://accounts.google.com/o/saml2/idp?idpid=ID"),
Binding = Saml2BindingType.HttpRedirect,
};
identityProvider.SigningKeys.AddConfiguredKey(new X509Certificate2("GoogleSuite.pem"));
options.IdentityProviders.Add(identityProvider);
});
develop
branch is now reorganized with the new Metadata library and corresponding tests. All existing code from previous versions has been moved to the legacy
folder. The idea forward is to add back functionality incrementally in a new design. Code and tests can of course be copied from the existing code base where suitable, but when doing so it needs to be reviewed that it follows the new standards.
Hi. I'm trying to debug locally (using ngrok) some mappings made on my Google Suite saml mappings.
But i'm getting this error:
Saml2 Status Message: Invalid request, ACS Url in request https://localhost:44307/Saml2/Acs doesn't match configured ACS Url https://xxx.ngrok.io/Saml2/Acs.
Saml2 Second Level Status: urn:oasis:names:tc:SAML:2.0:status:RequestDenied
Is there a way to force this localhos request to be the ngrok tunnel?
Hi , I am facing an Issue with SustainSys(v2.2) . In CommandResultHttpExtensions, ApplyCookies , Set-Cookie are getting duplicated . If i already set asp.net_sessionid , ApplyCookies is duplicating the SessionCookie also . Can anyone please help me in resolve this issue
You asked the same question on Stack Overflow, didn't you? Well, are you using the Kentor.OwinCookieSaver package i your application?