Back to Collection Items
#include <CkHttp.h>
#include <CkStringBuilder.h>
void ChilkatSample(void)
{
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkHttp http;
bool success;
// Adds the "Authorization: Bearer {{token}}" header.
http.put_AuthToken("{{token}}");
CkStringBuilder sbResponseBody;
success = http.QuickGetSb("https://domain.com/accounts/api/me",sbResponseBody);
if (success == false) {
std::cout << http.lastErrorText() << "\r\n";
return;
}
std::cout << "Response status code = " << http.get_LastStatus() << "\r\n";
std::cout << sbResponseBody.getAsString() << "\r\n";
}
Curl Command
curl -X GET
-H "Authorization: Bearer {{token}}"
https://domain.com/accounts/api/me
Postman Collection Item JSON
{
"name": "Get my profile information",
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{token}}",
"type": "text"
}
],
"url": {
"raw": "{{url}}/accounts/api/me",
"host": [
"{{url}}"
],
"path": [
"accounts",
"api",
"me"
]
}
},
"response": [
]
}