You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a situation where I need to authenticate SAML SSO using a console application without user input at the university where I work. I have been working with IT and they have provided Service provider Metadata with contains the SSL signing key, entityID and Assertion Consumer Service URL. In addition they send me the IdP Metadata which contains the SSL signing/encryption key, entityID and Single Sign On Service URL.
Is this going to be possible using this library ?
The text was updated successfully, but these errors were encountered:
Are your users sync'd on premise uses or cloud only users? You may need to check if the User.Identity.IsAuthenticated is true? The problem here is that this may mean they've been authenticated again the local on Prem AD or if the Entra Id login session is still persistent and valid. If so attempt the Acs challenge response and if the entra session still exists then this ought to re-affirm and refresh the saml2 token.
Our users are sync'd on premise via Shibboleth IdP. I'm not sure where I would need to check the User.Identity.IsAuthenticated in the code but I'm sure its a boolean property in the library or in ASp.net. I assume once I get authenticated I can append a cookie/token to the request to the SP ?
I have a situation where I need to authenticate SAML SSO using a console application without user input at the university where I work. I have been working with IT and they have provided Service provider Metadata with contains the SSL signing key, entityID and Assertion Consumer Service URL. In addition they send me the IdP Metadata which contains the SSL signing/encryption key, entityID and Single Sign On Service URL.
Is this going to be possible using this library ?
The text was updated successfully, but these errors were encountered: