The node-oidc-provider
library is a NodeJS module that implements a standard OpenID Connect Provider
Questions tagged [node-oidc-provider]
36 questions
0
votes
2 answers
How to get access_token using token endpoint in the node OIDC provider
I tried to get access_token and refresh_token using authorization code flow using node oidc provider. I got auth_code. but I could not get access token and refresh token How to fix this Issue. I referred many documentation but I could not get…

Hariprasath Vengatachalam
- 155
- 6
- 18
0
votes
1 answer
How to get access token and refresh token in the /token endpoint using OIDC provider
I tried to get the access token and refresh token in the /token endpoint. I got authorization code and I will pass the token endpoint but it's throwing grant request is invalid error. How to fix this issue
Configuration
const oidc = new…

Hariprasath Vengatachalam
- 155
- 6
- 18
0
votes
1 answer
How to get the Authorization code in the node OIDC provider
I implemented node-OIDC-Provider in Node JS I got Id-token but I need authorize-code. So, when I hit this Api(http://localhost:3000/auth?client_id=oidcCLIENT&response_type=code&scope=openid&redirect_uri=http://localhost:3000) it throwing an…

Hariprasath Vengatachalam
- 155
- 6
- 18
0
votes
1 answer
How to integrate OIDC Provider in Node jS
I tried to Integrate OIDC Provider to Node JS and I have a Sample Code. So, I run this Sample code it's throwing an error(unrecognized route or not allowed method (GET on /api/v1/.well-known/openid-configuration)).The problem is…

Hariprasath Vengatachalam
- 155
- 6
- 18
0
votes
1 answer
How do I mount an node-oidc-provider against a mountPath using ExpressJS?
I am using the node-oidc-provider (v6.29.3) library to build a simple OIDC Connect mock-service and am having issues trying to mount the provider against a specific mountPath. It all works fine if mounted against / but trying to mount against /oidc…

Dave Sag
- 13,266
- 14
- 86
- 134