I'm building an angular 5 application, using Identity Server 3 (Implicit Flow), based off this tutorial:
https://www.scottbrady91.com/OpenID-Connect/Silent-Refresh-Refreshing-Access-Tokens-when-using-the-Implicit-Flow
(he uses Identity 4)
so far…
I am implementing identity server 4 with vue js in client side.
Currently, I have only the admin login in the application, with the password and username.
I do not have any public site from where the USER get redirected to login. I wanted the user…
I am struggling to understand how this silent renew process works. as per what I Read I understood that the html page will be kept in an iframe and it keeps pinging server for renewing token.
I have an angular application, typically we package…
I'm building a React app where I want to authenticate the user using OpenID Connect. In my dev environment the OIDC authority is a locally running instance of Identity Server 4.
I found a Github repo which integrates the oidc-client-js library with…
I am following the Authenticating Angular2 with Oidc-client and trying to implement the authentication part. Because the angular2 is using
{ provide: LocationStrategy, useClass: HashLocationStrategy }
my urls will change to for eg:…
I have an Angular app with the oidc client for authentication and the code works fine with Chrome and Edge but when I try to authenticate using Safari it works after several retries/errors and with Firefox it simply does not work. The error I get is…
I'm using oidc-client 1.3.0 with an angular 4 app. The initial authentication (signinRedirect) is working just fine. But, when the token expires it loads the silent-renew.js and attempts to do:
Oidc.UserManager().signinSilentCallback();
It gets an…
Sample code provided in https://github.com/maxmantz/redux-oidc-example assumes that the user explicitly clicks on some kind of "Login" button to log on with OpenID Connect. This works fine if OpenID Connect is just one of the possible login types…
I need to implement the Slient-Renew Token using oidc-client or redux-oidc - npm node module.
I'm using Identity Server Version 3.0 and Javascript ReactJs Client UI Application (Webpack Version 2).
I'm having a simple Javascript application download…
I'm trying to implement IdentityServer4. All the clients will be JavaScript app (in react js). My questions are:
We will have our custom user database so I'm trying to implement the IS4 with Aspnet identity like the 6th example. But, as my client…
I'm using oidc-client in my SPA application against IdentityServer3, using implicit flow.
Revoking my reference token on sign out is not working.
I have set revokeAccessTokenOnSignout: true and client_secret to a dummy secret, and I see the request…
I know that there is a JavaScript client called oidc-client.js for IdentityServer4, but it implements the Implicit flow. I need something that can implement the Hybrid or Hybrid+PKSE flow. First, is there a client library out there that implements…
I'm securing a web app with identity server 4. My app is split into 2 oidc clients an ASP.Net Core MVC client and a javascript(angularjs) client which uses the oidc-client javascript library.
When a user first visits the web app we redirect for log…
This is my first Nuxt 3 application. I am using oidc-client-ts for authorization and authentication.
First I created this Plugin
import { UserManager, WebStorageStateStore } from "oidc-client-ts";
export default defineNuxtPlugin(({ nuxtApp }) => {
…
I saw that there are already threads on the subject but they are mostly dead or in any case without any real solution.
I'm implementing a react and typescript client, in it I have installed the oidc-client module to be able to communicate with an…