skip to Main Content

Firebase Discord OIDC (Open ID)

Been looking for a way to connect Discord Auth with Open ID I have done all the steps according to the Firebase Open ID documentated found: https://firebase.google.com/docs/auth/web/openid-connect?hl=en&authuser=0 I have found a similar Auth provider using OpenID to connect to Discord…

VIEW QUESTION

Centos – Codeigniter OpenID ERR_SSL_PROTOCOL_ERROR

I am trying to implement Jumbojett OpenID Authentication in my Linux Centos 9 Server. This is my login controller (welcome.php) code: public function login_sso() { if (!$this->session->userdata('USERNIP')) { $oidc = new OpenIDConnectClient( $this->config->item('SSO_PROVIDER_URL'), $this->config->item('SSO_CLIENT_ID'), $this->config->item('SSO_CLIENT_SECRET') ); $isAuthenticate = $oidc->authenticate(); if…

VIEW QUESTION

Azure – AD B2C and OpenID Federation

I'm looking for information about Azure AD B2C and how/if it can act as a Leaf Entity in a OpenID Federation Trust Chain (ref: https://openid.net/specs/openid-federation-1_0.html). This requires the /.well-known/openid-federation endpoint to be available in order to access the Entity Statement,…

VIEW QUESTION

Why does Postman show a sign-in page instead of ‘hello’ when calling a .NET API on Azure?

instead of returning hello it requires a sign in. I have tried to pass tokens etc. this works fine in the browser[cannot seem to replicate openID connect auth flow] services.AddMicrosoftIdentityWebAppAuthentication(Configuration) .EnableTokenAcquisitionToCallDownstreamApi() .AddMicrosoftGraph(options => { Configuration.Bind("AzureAd", options); options.Scopes = AppSettings.GetScopes(); })…

VIEW QUESTION
Back To Top
Search