From 3c8ce58f45b051753748463079a81eb98212cdbe Mon Sep 17 00:00:00 2001 From: mitovman <84909213+mitovman@users.noreply.github.com> Date: Wed, 20 Aug 2025 09:22:03 +0300 Subject: [PATCH] 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 --- .../calling-the-destination-service-rest-api-84c5d38.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/1-connectivity-documentation/calling-the-destination-service-rest-api-84c5d38.md b/docs/1-connectivity-documentation/calling-the-destination-service-rest-api-84c5d38.md index ba57fc6..d3168df 100644 --- a/docs/1-connectivity-documentation/calling-the-destination-service-rest-api-84c5d38.md +++ b/docs/1-connectivity-documentation/calling-the-destination-service-rest-api-84c5d38.md @@ -131,7 +131,7 @@ Here is an example call using **curl**: > curl -X POST \ > "/oauth/token" \ > -H "Content-Type: application/x-www-form-urlencoded" \ -> -d "grant_type=client_credentials" --data-urlencode "client_id=" --data-urlencode "client_secret=" +> -d "grant_type=client_credentials" --data-urlencode 'client_id=' --data-urlencode 'client_secret=' > ``` where: