Skip to content

Commit

Permalink
fix(docs): missing single quotes (#3239)
Browse files Browse the repository at this point in the history
  • Loading branch information
maduvena authored Dec 7, 2022
1 parent 3fbc9e7 commit 9f38c6a
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions docs/admin/auth-server/endpoints/client-registration.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,8 @@ Configure the Janssen AS using steps explained in the [link](#curl-commands-to-c

#### 1. A simple client registration request (with mandatory parameter):
```
curl -X POST -k -i 'https://my.jans.server/jans-auth/restv1/register' \
--data '{ \
"redirect_uris": ["https://client.example.org/cb"] \
}' \
curl -X POST -k -H 'Content-Type: application/json' -i 'https://my.jans.server/jans-auth/restv1/register' \
--data '{"redirect_uris": ["https://my.jans.client/page"]}'
```

#### 2. A typical client registration request :
Expand Down

0 comments on commit 9f38c6a

Please sign in to comment.