From 9be4189a8b287606119b3bdc2210b37a7b73012c Mon Sep 17 00:00:00 2001 From: jimmyfagan <90421499+jimmyfagan@users.noreply.github.com> Date: Thu, 5 Dec 2024 14:43:10 -0600 Subject: [PATCH] BB2-3529: Doc updates for PKCE (Part 2) (#393) * Doc updates for PKCE * Fix code_verifier example --- _pages/developers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_pages/developers.md b/_pages/developers.md index 399e1f37..7f61a92f 100644 --- a/_pages/developers.md +++ b/_pages/developers.md @@ -412,7 +412,7 @@ To retrieve an access token, POST to the BB2.0 /token endpoint providing the cod ~~~ curl -X POST "https://sandbox.bluebutton.cms.gov/v2/o/token/" \ -u ":" \ --d "code=TSjqiZCdJwGyytGjz2GzziPfHTJ6z2&grant_type=authorization_code&redirect_uri=http://localhost:8080/testclient/callback" +-d "code=TSjqiZCdJwGyytGjz2GzziPfHTJ6z2&grant_type=authorization_code&redirect_uri=http://localhost:8080/testclient/callback&code_verifier=zlGzSLRQz6HrTpd3TvEraYoVPW2cknzu4tUk6wHaPFw" ~~~ ##### Token response ~~~