Chilkat Online Tools

ERROR!

------------------- GenerateCode ----------------------
ImpliedContentType: application/x-www-form-urlencoded
---- begin chilkat script ----
// This example assumes the Chilkat API to have been previously unlocked.
// See {{-global_unlock:::Global Unlock Sample-}} for sample code.

new Http http;
ckbool success;

new HttpRequest req;

new JsonObject jsonParam1;
call req.AddParam("refresh_token",jsonParam1.Emit());
call req.AddParam("grant_type","refresh_token");

call req.AddHeader("Authorization","Basic {{encodedKeys}}");

new HttpResponse resp;
req.HttpVerb = "POST";
req.ContentType = "application/x-www-form-urlencoded";
success = http.PostUrlEncoded("https://{{hostenv}}/oauth/token", req,resp);
if (success == ckfalse) {
println http.LastErrorText;
return;
}

println resp.StatusCode;
println resp.BodyStr;

---- end chilkat script ----

Perl / DocuSign Admin API / 03 Refresh Access Token

Back to Collection Items

use chilkat();

# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.

$http = chilkat::CkHttp->new();

$req = chilkat::CkHttpRequest->new();

$jsonParam1 = chilkat::CkJsonObject->new();
$req->AddParam("refresh_token",$jsonParam1->emit());
$req->AddParam("grant_type","refresh_token");

$req->AddHeader("Authorization","Basic {{encodedKeys}}");

$resp = chilkat::CkHttpResponse->new();
$req->put_HttpVerb("POST");
$req->put_ContentType("application/x-www-form-urlencoded");
ERROR: Assignment type mismatch.  ExpressionType=HttpResponse, atgType=ckbool

if ($success == 0) {
    print $http->lastErrorText() . "\r\n";
    exit;
}

print $resp->get_StatusCode() . "\r\n";
print $resp->bodyStr() . "\r\n";

Curl Command

curl -X POST
	-H "Authorization: Basic {{encodedKeys}}"
	--data-urlencode 'refresh_token={{refreshToken}}'
	--data-urlencode 'grant_type=refresh_token'
https://{{hostenv}}/oauth/token

Postman Collection Item JSON

{
  "name": "03 Refresh Access Token",
  "event": [
    {
      "listen": "test",
      "script": {
        "type": "text/javascript",
        "exec": [
          "var jsonData = JSON.parse(responseBody);",
          "postman.setEnvironmentVariable(\"accessToken\", jsonData.access_token);",
          "var jsonData = JSON.parse(responseBody);",
          "postman.setEnvironmentVariable(\"refreshToken\", jsonData.refresh_token);"
        ]
      }
    }
  ],
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Authorization",
        "value": "Basic {{encodedKeys}}"
      }
    ],
    "body": {
      "mode": "urlencoded",
      "urlencoded": [
        {
          "key": "refresh_token",
          "value": "{{refreshToken}}"
        },
        {
          "key": "grant_type",
          "value": "refresh_token"
        }
      ]
    },
    "url": {
      "raw": "https://{{hostenv}}/oauth/token",
      "protocol": "https",
      "host": [
        "{{hostenv}}"
      ],
      "path": [
        "oauth",
        "token"
      ]
    }
  },
  "response": [
  ]
}