Global web icon
stackoverflow.com
https://stackoverflow.com/questions/1087031/whats-…
What's the difference between OpenID and OAuth?
OIDC uses simple JSON Web Tokens (JWT), which you can obtain using flows conforming to the OAuth 2.0 specifications. OAuth is directly related to OIDC since OIDC is an authentication layer built on top of OAuth 2.0.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/7699200/what-i…
What is the difference between OpenID and SAML?
Source O pen ID C onnect (OIDC) is an authentication layer on top of OAuth 2.0, an authorization framework. The standard is controlled by the OpenID Foundation. OAuth is for authorization protocol, rather than an authentication protocol and OpenID specifically designed as an authentication protocol.
Global web icon
stackexchange.com
https://security.stackexchange.com/questions/24180…
Why is SAML still used for enterprise SSO instead of OIDC?
If your organization uses an API-centered architecture, OIDC will provide a better experience for users of native and single-page applications. OIDC is lightweight and more performance-friendly than SAML. For large enterprises that require a higher level of security, SAML might be the better choice. SAML allows multi-factor authentication.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/72370101/what-…
What is PostLogoutRedirectUris and signout-callback-oidc in signout flow
The /signout-callback-oidc route in a MVC client does nothing (probably; I don't know what it does) but it redirects to the home page. (*) The signout from both IdentityServer and the client app is already complete in step 5. /signout-callback-oidc has nothing to do with the signout itself.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/71156447/azure…
Azure AD OIDC changing preferred_username format
I've set up a Registered App for OIDC and configured it for various usages on Azure AD. The application I integrate with uses preferred_username in the ID Token for various things. Azure AD assigns
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/78837324/how-t…
How to obtain the OIDC access token in Blazor with .NET 8
I also tried AddBearerToken() as described in New in .NET 8 but that made no difference. I have reviewed the pages linked from How to get access token claims in a Blazor Server app using OIDC? but none of them talk about access_token as a claim.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/28658735/what-…
What are Keycloak's OAuth2 / OpenID Connect endpoints?
We are trying to evaluate Keycloak as an SSO solution, and it looks good in many respects, but the documentation is painfully lacking in the basics. For a given ...
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/73960999/redir…
Redirect after sign-out through OpenID Connect not working
I am building a Blazor Server ASP.NET Core application with cookie based authentication through a OpenID Connect (OIDC) provider. On sign-out I want to be redirected to localhost URI: https://local...
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/74675864/when-…
When to use prompt=login and how to handle it? OpenID Connect
How OIDC provider can handle prompt=login parameter? As I mentioned, scenario where any client can logout any user seems strange to me (see my question), but maybe is this valid scenario?
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/63624005/how-t…
how to implement OpenID Connect from a private provider in the c# asp ...
I have an ASP.NET MVC application that needs to integrate OpenID Connect authentication from a Private OpenID Connect (OIDC) Provider, and the flow has the following steps: