feat: install django-oauth-toolkit to implement OpenID Connect #1
1 changed files with 24 additions and 0 deletions
24
docs/management-cmd.md
Normal file
24
docs/management-cmd.md
Normal file
|
@ -0,0 +1,24 @@
|
|||
## 1. Create OIDC application
|
||||
|
||||
### Pre-requisites:
|
||||
|
||||
1. A registered and active/email-verified user
|
||||
|
||||
### Command:
|
||||
|
||||
```bash
|
||||
python manage.py create_oidc <app-name> <username> <redirect_uri>
|
||||
```
|
||||
|
||||
### Example:
|
||||
|
||||
```bash
|
||||
$ python manage.py create_oidc my_application admin https://example.org/sso-redirect
|
||||
New application foo created successfully.
|
||||
client_id: U6qi6FIzj5AvbYJehEkf7yzVbvUyOAQsrTwspmsQ
|
||||
client_secret: OEZjyHT4KBjvpTWod0QIxX8uWmnq8EQi2nsMU5WfZgu94wrzRdHjptEJ57O5SSEWsvOATOFMASVpBqYtboisdyfdpAC43gcMnbbHsP4QRE7dv66e4rYzyIdI9LuBMoh1
|
||||
```
|
||||
|
||||
Configure [relying
|
||||
party/application](https://openid.net/specs/openid-connect-core-1_0.html#Terminology)
|
||||
to use `client_id` and `client_secret`
|
Reference in a new issue