Unicode C++
" header.
Unicode C++
HTTP GET with Custom Header and OAuth2 Bearer Token
See more HTTP Examples
Demonstrate how to send a GET request with customer headers and an "Authorization: BearerChilkat Unicode C++ Downloads
#include <CkHttpW.h>
#include <CkStringBuilderW.h>
#include <CkJsonObjectW.h>
void ChilkatSample(void)
{
bool success = false;
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkHttpW http;
// Setting the AuthToken property causes the "Authorization: Bearer <token>" header to be adeded.
http.put_AuthToken(L"Just_the_access_token_here");
// Add one or more custom headers..
http.SetRequestHeader(L"X-Tenant-ID",L"value goes here");
http.SetRequestHeader(L"blah-blah-blah",L"value goes here");
const wchar_t *url = L"https://www.example.com/abc/123?x=something&y=someOtherThing";
// Send the GET request and get the response body in the StringBuilder object.
CkStringBuilderW sb;
success = http.QuickGetSb(url,sb);
if (success != true) {
wprintf(L"%s\n",http.lastErrorText());
return;
}
wprintf(L"response status code: %d\n",http.get_LastStatus());
wprintf(L"response body:\n");
wprintf(L"%s\n",sb.getAsString());
// If the response contains JSON, you can load it into a Chilkat JSON object...
CkJsonObjectW json;
json.LoadSb(sb);
json.put_EmitCompact(false);
wprintf(L"%s\n",json.emit());
}