Chilkat Online Tools

Xojo / DocuSign REST API / 01 Authorize Code Grant Access Token

Back to Collection Items

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

Dim http As New Chilkat.Http
Dim success As Boolean

Dim req As New Chilkat.HttpRequest

Dim jsonParam1 As New Chilkat.JsonObject
req.AddParam "code",jsonParam1.Emit()
req.AddParam "grant_type","authorization_code"

req.AddHeader "Authorization","Basic {{encodedKeys}}"

Dim resp As Chilkat.HttpResponse
resp = http.PostUrlEncoded("https://{{hostenv}}/oauth/token",req)
If (http.LastMethodSuccess = False) Then
    System.DebugLog(http.LastErrorText)
    Return
End If

System.DebugLog(Str(resp.StatusCode))
System.DebugLog(resp.BodyStr)

Curl Command

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

Postman Collection Item JSON

{
  "name": "01 Authorize Code Grant 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": "code",
          "value": "{{codeFromUrl}}"
        },
        {
          "key": "grant_type",
          "value": "authorization_code"
        }
      ]
    },
    "url": {
      "raw": "https://{{hostenv}}/oauth/token",
      "protocol": "https",
      "host": [
        "{{hostenv}}"
      ],
      "path": [
        "oauth",
        "token"
      ]
    }
  },
  "response": [
  ]
}