I'm trying to implement OpenId and oidc-client-js in react. Right now I'm stuck in implementing logout function.
From what I understand, I need to set the post_logout_redirect_uri and use signoutRedirect() to logout the user. Logging out the user…
We are using IdentityServer4 and the oidc-client-js library for angular.
We noticed that the token is renewed automatically which is fine. But we want the user to be signed out, after the SlidingRefreshTokenLifetime is expired.
We have set the…
i am using identity server 4 and oidc-client-js for auth, with angular frame work. I faced it this issue,
I am trying to trigger login redirect when application start. First i tried this code;
this.authService.userManager.getUser().then((user) => {
…
We have users complaining because they are redirected to the login page of the Identity Server while in the middle of their work (and thus losing their current work). We have endeavoured to configure a sliding expiration, so I'm not sure why this is…
I'm using OIDC client and I'm calling below line to siginin,
await this.userManager.signinRedirect(this.createArguments(state));
return this.redirect();
after this I see in the network tab it is navigated…
I have two applications using the same authentication and authorization service.
App one is for user management(can only be accessed by the system administrator), and App 2 is for performing tasks and can only be accessed by users added by the…
started getting this issue while loading app, initially it was not happening. any idea?
Thanks in advance
Getting auth well known endpoints failed on start [n]
angular-auth-oidc-client.js:169 Getting auth well known endpoints failed on start…
I am using oidc-client.js in my angular project.
Right now users could log-in and log out and it works fine. the only problem is that when I want to call a service in app.component, in the interceptor the user is not authenticated.
auth.service is…
I am using authcodeflow with PKCE.
Using OIDC js library in the frontend, making calls to adfs getting an auth code and then calling my backend api. The backend api which calls adfs server get the access token and the backend api returns the token…
I have an ASP.NET Core application with IdentityServer4 for authentication and authorization.
I am using oidc-client with Angular 10 for the front-end.
The problem is my application never logs the user out even after the token is expired. it will be…
I'm using "oidc-client": "1.10.1" for oidc authentication, below is my configuration for the userManager
const settings = {
authority: (window as any).__env.auth.authority, //OAuth 2.0 authorization endpoint of the OpenID Provider
…
I am using IdentityServer 4 with an Angular 10 client that uses OIDC Client JS:
To redirect a user for signin I am calling signinRedirect on the Angular's client:
UserManager.signinRedirect(args)
That redirects to IdentityServer 4…
I'm confused how I can get access tokens and user info details when using azure ad scopes with oidc-client.js.
I have the following scope against my app in the portal...
I then have my user manager settings set up as follows....
var settings:…
I'm using oidc-client-js in an Angular application and would like to use the acr_values to pass an IDP value to Identity Server 4. (Identity Server is our primary token service, but we have configured it to use Okta as an external provider for one…
promise from oidc-client in angular 10 constructor is taking too long to resolve, the isLoggedIn function is being called before the constructor places de value in the user variable.
this is my code:
import { UserManager, UserManagerSettings, User }…