From 2e8c68e3a6124790a8371b7dc031224c7a297c64 Mon Sep 17 00:00:00 2001 From: Thumimku Date: Wed, 30 Oct 2024 15:05:23 +0530 Subject: [PATCH] pk jwt cc grant sample request fix --- .../guides/authentication/oidc/private-key-jwt-client-auth.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/en/includes/guides/authentication/oidc/private-key-jwt-client-auth.md b/en/includes/guides/authentication/oidc/private-key-jwt-client-auth.md index aef723d427..851805ee17 100644 --- a/en/includes/guides/authentication/oidc/private-key-jwt-client-auth.md +++ b/en/includes/guides/authentication/oidc/private-key-jwt-client-auth.md @@ -201,8 +201,8 @@ If you are implementing the client credentials flow, you have enabled **client c ``` bash curl --location --request POST '{{ product_url_format }}/oauth2/token' \ --header 'Content-Type: application/x-www-form-urlencoded' \ ---data-urlencode 'grant_type=client_credentials’ \ ---data-urlencode 'client_assertion_type=urn:ietf:params:oauth:client-assertion-type:jwt-bearer'\ +--data-urlencode 'grant_type=client_credentials' \ +--data-urlencode 'client_assertion_type=urn:ietf:params:oauth:client-assertion-type:jwt-bearer' \ --data-urlencode 'client_assertion={jwt_assertion}’ ```