Back to Collection Items
#include <C_CkHttp.h>
#include <C_CkHttpRequest.h>
#include <C_CkJsonObject.h>
#include <C_CkHttpResponse.h>
void ChilkatSample(void)
{
HCkHttp http;
BOOL success;
HCkHttpRequest req;
HCkJsonObject jsonParam1;
HCkHttpResponse resp;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http = CkHttp_Create();
CkHttp_putBasicAuth(http,TRUE);
CkHttp_putLogin(http,"username");
CkHttp_putPassword(http,"password");
req = CkHttpRequest_Create();
jsonParam1 = CkJsonObject_Create();
CkHttpRequest_AddParam(req,"token",CkJsonObject_emit(jsonParam1));
resp = CkHttp_PostUrlEncoded(http,"https://domain.com/",req);
if (CkHttp_getLastMethodSuccess(http) == FALSE) {
printf("%s\n",CkHttp_lastErrorText(http));
CkHttp_Dispose(http);
CkHttpRequest_Dispose(req);
CkJsonObject_Dispose(jsonParam1);
return;
}
printf("%d\n",CkHttpResponse_getStatusCode(resp));
printf("%s\n",CkHttpResponse_bodyStr(resp));
CkHttpResponse_Dispose(resp);
CkHttp_Dispose(http);
CkHttpRequest_Dispose(req);
CkJsonObject_Dispose(jsonParam1);
}
Curl Command
curl -X POST
-u 'username:password'
-H "Content-Type: application/x-www-form-urlencoded"
--data-urlencode 'token={{lender_token}}'
https://domain.com/
Postman Collection Item JSON
{
"name": "[Lender] Introspect Lender Authentication Token",
"event": [
{
"listen": "test",
"script": {
"id": "7252b9c5-c9f3-49bc-a6a9-30e20a9cde88",
"exec": [
""
],
"type": "text/javascript"
}
}
],
"_postman_id": "be8240d3-76ef-47f3-8125-18dcf621c1dc",
"request": {
"auth": {
"type": "basic",
"basic": {
"username": "{{lender_client_id}}",
"password": "{{lender_client_secret}}",
"showPassword": false
}
},
"method": "POST",
"header": [
{
"key": "Content-Type",
"name": "Content-Type",
"type": "text",
"value": "application/x-www-form-urlencoded",
"disabled": true
}
],
"body": {
"mode": "urlencoded",
"urlencoded": [
{
"key": "token",
"value": "{{lender_token}}",
"type": "text"
}
]
},
"url": "{{api_host}}/oauth2/v1/token/introspection"
},
"response": [
]
}