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;
call req.AddParam("grant_type","authorization_code");

new JsonObject jsonParam2;
call req.AddParam("client_id",jsonParam2.Emit());

new JsonObject jsonParam3;
call req.AddParam("client_secret",jsonParam3.Emit());
call req.AddParam("code","");
call req.AddParam("scope","read+write");

new JsonObject jsonParam6;
call req.AddParam("redirect_uri",jsonParam6.Emit());

call req.AddHeader("Authorization","Bearer <access_token>");

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

println resp.StatusCode;
println resp.BodyStr;

---- end chilkat script ----

phpExt / PandaDoc API Reference / Create Access Token

Back to Collection Items

<?php

include("chilkat.php");

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

$http = new CkHttp();

$req = new CkHttpRequest();
$req->AddParam('grant_type','authorization_code');

$jsonParam2 = new CkJsonObject();
$req->AddParam('client_id',$jsonParam2->emit());

$jsonParam3 = new CkJsonObject();
$req->AddParam('client_secret',$jsonParam3->emit());
$req->AddParam('code','');
$req->AddParam('scope','read+write');

$jsonParam6 = new CkJsonObject();
$req->AddParam('redirect_uri',$jsonParam6->emit());

$req->AddHeader('Authorization','Bearer <access_token>');

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

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

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

?>

Curl Command

curl -X POST
	-H "Authorization: Bearer <access_token>"
	--data-urlencode 'grant_type=authorization_code'
	--data-urlencode 'client_id={{client_id}}'
	--data-urlencode 'client_secret={{client_secret}}'
	--data-urlencode 'code='
	--data-urlencode 'scope=read+write'
	--data-urlencode 'redirect_uri={{redirect_uri}}'
https://api.pandadoc.com/oauth2/access_token

Postman Collection Item JSON

{
  "name": "Create Access Token",
  "event": [
    {
      "listen": "test",
      "script": {
        "type": "text/javascript",
        "exec": [
          "var jsonData = JSON.parse(responseBody);",
          "if (jsonData.access_token !== undefined) {",
          "    postman.setEnvironmentVariable(\"access_token\", jsonData.access_token);",
          "}",
          "if (jsonData.refresh_token !== undefined) {",
          "    postman.setEnvironmentVariable(\"refresh_token\", jsonData.refresh_token);",
          "}"
        ]
      }
    }
  ],
  "request": {
    "auth": {
      "type": "oauth2"
    },
    "method": "POST",
    "header": [
    ],
    "body": {
      "mode": "urlencoded",
      "urlencoded": [
        {
          "key": "grant_type",
          "value": "authorization_code",
          "type": "text"
        },
        {
          "key": "client_id",
          "value": "{{client_id}}",
          "type": "text"
        },
        {
          "key": "client_secret",
          "value": "{{client_secret}}",
          "type": "text"
        },
        {
          "key": "code",
          "value": "",
          "type": "text"
        },
        {
          "key": "scope",
          "value": "read+write",
          "type": "text"
        },
        {
          "key": "redirect_uri",
          "value": "{{redirect_uri}}",
          "type": "text"
        }
      ]
    },
    "url": {
      "raw": "https://api.pandadoc.com/oauth2/access_token",
      "protocol": "https",
      "host": [
        "api",
        "pandadoc",
        "com"
      ],
      "path": [
        "oauth2",
        "access_token"
      ]
    },
    "description": "Provide values to variables: client_id, client_secret ([Postman environments](https://www.getpostman.com/docs/postman/environments_and_globals/manage_environments) is great for it).\n\nProvide value for one-off variable code.\n\nFor details go to [https://developers.pandadoc.com/v1/reference#create-an-access_token](https://developers.pandadoc.com/v1/reference#create-an-access_token).\n\nFor details of authentication process go to [https://developers.pandadoc.com/v1/reference#authentication-process](https://developers.pandadoc.com/v1/reference#authentication-process)."
  },
  "response": [
  ]
}