Skip to content

Commit 3c8ce58

Browse files
authored
use single quotes
there are special characters in the client_id and client_secret and it is better to update the curl template with single quotes
1 parent 71edfb2 commit 3c8ce58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/1-connectivity-documentation/calling-the-destination-service-rest-api-84c5d38.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ Here is an example call using **curl**:
131131
> curl -X POST \
132132
> "<url>/oauth/token" \
133133
> -H "Content-Type: application/x-www-form-urlencoded" \
134-
> -d "grant_type=client_credentials" --data-urlencode "client_id=<client_id>" --data-urlencode "client_secret=<client_secret>"
134+
> -d "grant_type=client_credentials" --data-urlencode 'client_id=<client_id>' --data-urlencode 'client_secret=<client_secret>'
135135
> ```
136136
137137
where:

0 commit comments

Comments
 (0)