Frog-kt / node-oidc-provider-example

A step-by-step approach to getting an OpenID Connect Provider instance up and running using oidc-provider

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

node-oidc-provider-example

https://github.com/panva/node-oidc-provider-example

herokuでoidc-providerのサンプルプロジェクトをデプロイしてみました。

DBにはRedisを使用

立ち上げ方

heroku create --addons securekey,heroku-redis:hobby-dev

heroku labs:enable runtime-dyno-metadata

heroku config | grep REDIS_URL

git add .
git commit -a -m 'added a redis adapter for persisting data'

git push heroku main

uriの例

https://example.com/auth?client_id=foo&response_type=id_token&redirect_uri=https%3A%2F%2Fjwt.io&scope=openid%20email&nonce=foobar&prompt=login

About

A step-by-step approach to getting an OpenID Connect Provider instance up and running using oidc-provider

License:MIT License


Languages

Language:JavaScript 54.6%Language:EJS 45.4%