https://github.com/apexal/example-oidc-app
Simple example app to test RCOS Identity Platform
https://github.com/apexal/example-oidc-app
Last synced: 2 months ago
JSON representation
Simple example app to test RCOS Identity Platform
- Host: GitHub
- URL: https://github.com/apexal/example-oidc-app
- Owner: Apexal
- License: mit
- Created: 2020-08-18T02:01:44.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-08-18T16:15:57.000Z (almost 5 years ago)
- Last Synced: 2025-02-14T09:52:57.506Z (4 months ago)
- Language: HTML
- Size: 10.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# OpenID Connect Client
A barebones Flask app to test with the RCOS Identity Platform (RIP) in development.
To use you must create `client_secrets.json`:
```json
{
"web": {
"client_id": "",
"client_secret": "",
"auth_uri": "http://localhost:3000/auth",
"token_uri": "http://localhost:3000/token",
"userinfo_uri": "http://localhost:3000/me",
"redirect_uris": [
"http://localhost:5000/oidc_callback"
],
"issuer": "http://localhost:3000"
}
}
```and run with
`$ FLASK_APP=app.py flask run`