-
Notifications
You must be signed in to change notification settings - Fork 46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Please add a sample django-restframework demo app #15
Comments
Hey there Ranvijay, what would you expect out of a sample demo app? You'd also need an openid connect provider that works with keys and all. |
|
Hey folks, I'm interested in implementing this too. Can someone point me at a working version? I want to set up URLs to authenticate a user in a static web-app with DjangoREST as a backend and OICD server for auth. |
This issue should be closed, as it's not really an issue or a reasonable request feature. |
Someone should at least give direction like is it required to add the key and secret in settings.py. I think this suggestion is an important one |
I'm not sure what you call a key or secret here. If it's the private key or public key used by the auth server to sign the id tokens, please don't put any in the settings of this app. The public keys are made available by the IP on the jwks endpoint and are supposed to be regularly renewed by the ip, furthermore there isn't only one public key at a given time but multiple and they are renewed, so if you put those in the settings and override the existing lib to use those settings instead of the public key provided by the IP, you might have to update your setting every hour. |
No description provided.
The text was updated successfully, but these errors were encountered: