Chilkat Online Tools

Classic ASP / DocuSign Admin API / 02 JWT Access Token

Back to Collection Items

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<%
' This example assumes the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.

set http = Server.CreateObject("Chilkat_9_5_0.Http")

set req = Server.CreateObject("Chilkat_9_5_0.HttpRequest")

set jsonParam1 = Server.CreateObject("Chilkat_9_5_0.JsonObject")
req.AddParam "assertion",jsonParam1.Emit()
req.AddParam "grant_type","urn:ietf:params:oauth:grant-type:jwt-bearer"

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

' resp is a Chilkat_9_5_0.HttpResponse
Set resp = http.PostUrlEncoded("https://{{hostenv}}/oauth/token",req)
If (http.LastMethodSuccess = 0) Then
    Response.Write "<pre>" & Server.HTMLEncode( http.LastErrorText) & "</pre>"
    Response.End
End If

Response.Write "<pre>" & Server.HTMLEncode( resp.StatusCode) & "</pre>"
Response.Write "<pre>" & Server.HTMLEncode( resp.BodyStr) & "</pre>"


%>
</body>
</html>

Curl Command

curl -X POST
	-H "Authorization: Basic {{encodedKeys}}"
	--data-urlencode 'assertion={{assertionHere}}'
	--data-urlencode 'grant_type=urn:ietf:params:oauth:grant-type:jwt-bearer'
https://{{hostenv}}/oauth/token

Postman Collection Item JSON

{
  "name": "02 JWT 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": "assertion",
          "value": "{{assertionHere}}"
        },
        {
          "key": "grant_type",
          "value": "urn:ietf:params:oauth:grant-type:jwt-bearer"
        }
      ]
    },
    "url": {
      "raw": "https://{{hostenv}}/oauth/token",
      "protocol": "https",
      "host": [
        "{{hostenv}}"
      ],
      "path": [
        "oauth",
        "token"
      ]
    }
  },
  "response": [
  ]
}