I have an Angular 9 web application connected via the oidc-client to Identity Server 4 and an API using Implicit flow. When I get the authenticated user I can see several claims I want for the site such as the email address, the user name or the…
I am using the OIDC client to perform the authentication and authorization using react application. I am able to login successful after the login I have a nav menu to display if the user is authenticated or not.
export default function NavMenu() {
…
I am trying to integrate Login flow with oidc-client in Office JS excel add-in and below are the findings.
I could able to integrate as attached below code flow but in that i am getting some issue as attached in screen shot.
Kindly review the below…
oidc-client returns the following error at UserManager.userManager.signinRedirectCallback():
Here is my config:
authority: 'https://.b2clogin.com/.onmicrosoft.com//v2.0',
client_id: '',
…
I want to add state while initiating login.
tried this way :
let obj = {state: 'customurl'};
usermanager.signinRedirect(obj);
and extracting :
usermanager.signinRedirectCallback().then(res => { res.state });
this is returning 'undefined'.
please…
I'm struggling with the authentication process. Not sure if it's well designed.
I have an angular app just for the login and registrations of users. In case the user wants to login 1, he fills only an email field and then he will be redirected 2 to…
I'm using Auth0 with Oidc in my Angular app for login.
I have the following configurations:
auth.module
NgOidcClientModule.forRoot({
// prettier-ignore
oidc_config: {
authority: environment.sts.authority,
client_id:…
Chrome plans to implement the new secure-by-default model for cookies with Chrome 80 in February 2020.
Now I am testing all our applications that might be affected.
For authentication/authorization we use oidc-client (on UI) and IndentityServer on…
I'm building an app with an external Identity Server. Login works fine, only when being sent back to the signin-oidc page something weird happens.
I'm using the HashLocationStrategy so the URL looks like…
i am working on react application which uses oidc client library to authenticate users using identity server 4. Authentication is working fine all scenarios except two.
When using IE in private mode
When using Edge in private mode
All other…
I have an Angular SPA using oidc-client w/ IdentityServer4 hosted on two different domains. Users that have blocked third party cookies in their browser settings are getting stuck in an redirect loop.
The root of the redirect loop appears to be the…
I'm using IdentityServer4(.NET Core API) and 'oidc-client' in Angular, In which I'm using custom login and logout urls, not default identityserver4 urls, So in this scenario silent-refresh request from 'oidc-client'. it returns 302, Still token is…
I'm using IdentityServer4 with Angular 8 and Web API.
When a user registers I log them in automatically using the oidc-client userManager.signinSilent method.
I use the same method to update the access token after a user's claims have been updated.…
How to handle access token expiration in angular application that uses oidc code flow?
I set the automaticSilentRenew to true in oidc client settings, which is triggering a call to the token endpoint and getting new access token, then I listen to…
I’m building an SPA app, and am using IdentityServer4 for the authentication. I’m using the new api authorization template found in .net core 3.0 for angular.
The template tries to authenticate first using an iFrame, if it fails it tries using a…