I've done auth with google when client auth, receive token_id, send it to server and server retrieve client account info base of that token_id. It was pretty easy because it was documented. Now I try to do with Steam but literally I have 4 rows…
I am working with identity server 4 to provide identity services to different apps in an enterprise arch.
Registered an SPA application using implicit flow with the identity server 4 app with oidc-client.js and is working.
But the problem is with…
I have a local instance of Identity Server 4 and I'm trying to follow this guide to create a Javascript client. This uses the oidc-client-js library and I'm using the signin popup approach so my sign in event handler looks like this:
signin(e) {
…
I have authorization in Angular 8 handled by (oidc-client.js) + .Net Core IdentityServer4.
Everything seems to work fine, but when I open the same application in second tab then it requires from me to login again. IdentityServer4 has cookie so it's…
I have an IdentityServer4 and a javascript client which is using the oidc-client.js library to authenticate with my IdentityServer. I have a specific case where I need to pass both acr values: idp:{providerName} and tenant:{tenantName}.
Using the…
I'm building a SPA using oidc-client to sign in to an IDP built using Identity Server 4.
The login redirections seems to work fine but on Firefox I'm getting the following CSP issues
Content Security Policy: Ignoring "'unsafe-inline'" within…
We have a Keycloak 18.0.2 with realms integrated to external IdP (Okta / Ping / Azure). In one realm we started seeing lots of IDENTITY_PROVIDER_LOGIN_ERROR / cookie_not_found in login events. And had users reporting that they were only able to…
I am currently building out a Vue3 SPA and trying to use the oidc-client-ts javascript library for authenticating a user. Up to this point, I have been successful at implementing the login/logout functionality with my existing code. The problem I am…
is there a way to user your custom React GUI with oidc-client-js? I know that if you trigger authentication endpoint using:
// PopUps might be blocked by the user, fallback to redirect
try {
await…
I have a .net core 3.1 MVC IdentityServer4 application (A tailored quickstart app provided by the guys at Idsrv) which I use for authentication against a SPA which is built using the oidc-client library and I've recently been able to replicate an…
I am using the OIDC client JS in Identity server 4 with react keep getting the error
Client secret validation failed for client, Invalid client secret
on Authorization code flow,
Oidc setting
private getClientSettings(): any {
return {
…
I've built an implementation of IdentityServer4, integrating ASP Identity running ASP.NET Core utilizing the Implicit Flow. (We're changing to an PKCE configuration later on, but whatever.) The application manages user signins across multiple web…
I'm using OIDC Client in my angular application for authentication against identity server 4. Everything works fine until i hit sign out.
I've enabled monitor session (enabled by default) so that other browser can detect the sign out and i can log…
Question / Issue
I would like to know the actual purpose of the "expires_at" property once I logged in successfully then the Identity Server returns the following Response JSON
{
"id_token":…
hi I am using identity server 4 implicit flow,
I am able to perform login and logout using oidc-client.js library,
but when logout on the identity server -- > account controller --> Logout action
parameter "logoutid" is receiving null due to which…