To add ADFS 3.0 authentication in our SPA we use the javascript sample and one (wsfed) external identityprovider, and we also add a local api for the SPA client
We also added a custom view to the login process, where the user could "Select…
When I do manual redirect, I'm getting an error from IdentityServer
invalid_request, code challenge required
However when I use oidc-client-js library for the same authorization request, I do not get that error. Library somehow sets code…
I am trying to set up OIDC authentication with the oidc-client-js in a React web application and authenticate against Azure B2C.
After completing the sign-in I get this error:
Problem with authentication endpoint: Error: Invalid issuer in token:…
I've got IdentityServer4 running with Google as a 3rd party identity provider. When a user logs in to IdentityServer via Google, how can I make IdentityServer detect, or otherwise get alerted, when the user logs out of Google directly? To be clear,…
So, I'm building a new security token service that is replacing an old solution based on IdentityServer3. I wish to authenticate with PKCE flow, and so far I've configured the new service with a certificate, identity resources, a test user, an API…
I just started a project using dot net core 3 react with individual user account template.
also made a self sign certificate *.pfx file and uploaded to server.
the problem is when I try to signing in after…
Checking with the most awesome community too! I've posted my issue here - https://github.com/IdentityModel/oidc-client-js/issues/910.
Can anyone help me, please? Kindly let me know if you need more information :pray
A bit of a strange one. On my Angular app, I have a refreshUser method to get the possibly logged in user loaded before displaying all the screen data. To do so I have the following ngOnInit method:
async ngOnInit() {
await…
I need to change the token on the client when changing user data on the server. For example, after changing some data on the server, I do a re-login. I see these changes, but the web application does not update this data automatically, that is, to…
I have an angular7 application with asp.net core 2.2 and an Identity server 4 for authentication and authorization. I am trying to do hybrid or implicit grant type to authenticate our angular application. Asp.net core is bootstraping our angular7…
I'm new to unit testing and have some got basics down. However, I'm trying to test a method. This method calls a function which is part of the oidc-client.js. It basically signs a user in.
spec file
import { async, ComponentFixture, TestBed }…
I've an Identity Server 4 app with Angular client using oidc-client. The problem is that in production the method addUserSignedOut doesn't stop to get called after I login in the client. I test it locally and works fine.
I think the problem could be…
I'm trying to implement a third-party auth in my sign up page, but I can't get it to work with IdentityServer4. I have it working in my login page since the oidc client is initiating the login request. However the oidc client is not aware of a…
I'm trying to login with Apereo CAS 5.1.1 in my react application using OIDC. Looking for libraries to achieve this, I landed on oidc-client-js 1.7.0, but I'm encountering the following error:
ResponseValidator._validateAccessToken: Failed to…
I am trying to do authentication using identity server 4 for my react app.i followed this documentation.I am using implicit flow of identity server so onload application it will go to login page of identity server. after giving proper username and…