generated from cncf/hugo-netlify-starter
-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix curl examples in builtin connector
Signed-off-by: Simon Bein <[email protected]>
- Loading branch information
1 parent
32fe9f2
commit 128a6f6
Showing
1 changed file
with
7 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -86,24 +86,26 @@ oauth2: | |
Depending on whether you use a public or a private client you need to either include the just `clientId` or the `clientId` and `clientPassword` in the authorization header. | ||
|
||
**Public Client** | ||
|
||
```shell | ||
curl -L -X POST 'http://localhost:8080/dex/token' \ | ||
-H 'Authorization: Basic cHVibGljLWNsaWVudAo=' \ # base64 encoded: public-client | ||
-H 'Content-Type: application/x-www-form-urlencoded' \ | ||
--data-urlencode 'grant_type=password' \ | ||
--data-urlencode 'scope=openid profile' \ | ||
--data-urlencode '[email protected]' \ | ||
--data-urlencode 'password=admin' | ||
--data-urlencode 'password=password' \ | ||
--data-urlencode 'client_id=public-client' | ||
``` | ||
|
||
|
||
**Private Client** | ||
|
||
```shell | ||
curl -L -X POST 'http://localhost:8080/dex/token' \ | ||
-H 'Authorization: Basic cHJpdmF0ZS1jbGllbnQ6YXBwLXNlY3JldAo=' \ # base64 encoded: private-client:app-secret | ||
-H 'Content-Type: application/x-www-form-urlencoded' \ | ||
--data-urlencode 'grant_type=password' \ | ||
--data-urlencode 'scope=openid' \ | ||
--data-urlencode '[email protected]' \ | ||
--data-urlencode 'password=admin' | ||
--data-urlencode 'password=password' \ | ||
--data-urlencode 'client_id=private-client' \ | ||
--data-urlencode 'client_secret=app-secret' | ||
``` |