(Unicode C++) qa.factura1.com.co Obtain Auth Token
Demonstrates how to send a JSON POST to get an authenticataion token for qa.factura1.com.co Note: This example requires Chilkat v11.0.0 or greater.
#include <CkHttpW.h>
#include <CkJsonObjectW.h>
#include <CkHttpResponseW.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;
// Build the following JSON
// {
// "password": "MY_PASSWORD",
// "username": "MY_USERNAME"
// }
CkJsonObjectW json;
json.put_EmitCompact(false);
json.UpdateString(L"password",L"MY_PASSWORD");
json.UpdateString(L"username",L"MY_USERNAME");
CkHttpResponseW resp;
success = http.HttpJson(L"POST",L"https://qa.factura1.com.co/v2/auth",json,L"application/json",resp);
if (success == false) {
wprintf(L"%s\n",http.lastErrorText());
return;
}
CkJsonObjectW jsonResp;
jsonResp.put_EmitCompact(false);
jsonResp.Load(resp.bodyStr());
wprintf(L"%s\n",jsonResp.emit());
wprintf(L"Access token: %s\n",jsonResp.stringOf(L"token"));
}
|