Questions tagged [node-oidc-provider]

The node-oidc-provider library is a NodeJS module that implements a standard OpenID Connect Provider

36 questions
1
vote
1 answer

Invalid token provided in oidc-provider accessing UserInfo enpoint

I started using OAuth2 server with oidc in node js. Github link My goal is simple, to access https://myserver/me which is UserInfo endpoint. While trying to learn how to use the server I also used this guide enter link description here Where I found…
0
votes
0 answers

Configure node-oidc-provider together with Alexa skills OAuth2 login

I'm currently using the oidc-provider lib in version 7.14.3, which I recently added to authenticate my users through an Alexa skill, which only supports OAuth2. For this project I can't integrate something like Keycloak and I'm limited to…
0
votes
0 answers

Creating anonymmous session using OpenID Connect Auth Server

I'm currently implementing an OpenID Authorization server (using node oidc-provider npm package) in place of a small in-house /login API built with express & passport, and I have some auth-related features which need to be integrated with our new…
0
votes
1 answer

How to validate request body before the client registration in node-oidc-provider?

I'm trying to code a validation to be executed on node-oidc-provider that needs to read the request body before process the DCR. I'm using the example provider like below: import Provider from 'oidc-provider'; import { configuration } from…
Ranieri Mazili
  • 723
  • 6
  • 21
0
votes
0 answers

Using node-oidc-provider as a auth server, how to add azure ad as a client?

I've read the documentation for node-oidc-provider up and down, and all of SO and not getting any luck from any search engine, so I ask you, the great SO organism for help. I am currently trying to set up my own authentication server (as a layer…
0
votes
1 answer

how to do a global OIDC logout using node-oidc-provider

What is the correct way in OIDC for an RP to initiate a global logout of all services to which the user is logged in via the OP? I can logout of a single service, but I've read you can create a frontend url for each RP, and load that as an iframe in…
JBaczuk
  • 13,886
  • 10
  • 58
  • 86
0
votes
1 answer

node-oidc-provider 7.12.0 (JWT, authorization_code) invalid_token error on UserInfo endpoint (/me)

i have some issues getting the UserInfo endpoint working using JWT AccessTokens, it works fine with default settings when commenting out the resourceIndicators section. I can get the access token using PostMan without issues, but when posting on the…
F0x06
  • 1
0
votes
1 answer

how to redirect user to specific custom login page using OIDC Provider interactions

how to redirect user to specific custom login page using OIDC Provider interactions I am trying to implement oidc provider application. It working with the default autorisation Endpoint(login page) I first redirect to :…
0
votes
1 answer

Standalone Openid Authorization server with NodeJs

I'm looking for some kind of standalone Identity Provider (Authz Server) that use the library... https://github.com/panva/node-oidc-provider I'm confused with some configs and I'd like to be able to guide myself in the OpenID workflow to provide the…
0
votes
3 answers

Issuing JWT access token using node-oidc-provider in authorization_code workflow

The following is my configuration for the oidc provider. I add resource indicators under the features. But it does not working at all. How can it issues JWT access token using node-oidc-provider in authorization_code workflow? The provider version…
0
votes
1 answer

NodeJS OIDC Provider getting aud and resource server errors upgrade from 6.x to 7.x

I am trying to upgrade [node-oidc-provider]https://github.com/panva/node-oidc-provider from version 6.x to version 7.x. I am using the authorization code flow for a React application. I am getting an error regarding aud(audience) being a required…
Wei Cong
  • 5
  • 3
0
votes
0 answers

How to define JWT token mode for client_credentials flow in node oidc-provider

I try to use the https://github.com/panva/node-oidc-provider for our OAuth implementation. There we have also some services that have to use client_credentials flows. Currently we are getting an opaque Access Token but we need this as a JWT…
gigo1980
  • 3
  • 2
0
votes
0 answers

heroku open '/.well-known/openid-configuration' error on windows

i'm using heroku on windows to test the first example for node-oidc-provider but running the following command gives a file not found error pointing in my git installation directory instead of opening the web. (Package is :…
Jahrenski
  • 171
  • 4
  • 20
0
votes
2 answers

Customize . well-known configurations in npm oidc-provider library

I am using npm package panva's oidc-provider to implement features of OIDC for login. I want to override a few well known configurations of OIDC provider. Well known configuration url:
Divya Singh
  • 147
  • 1
  • 13
0
votes
2 answers

How to get user information using node oidc provider

I got access token and I will pass access_token to userinfo endpoint it throwing an invalid token provided error How to fix this Issue. I tried to debug why this error is throwing we have validateAccessToken method(userinfo.js) in this method check…