(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
#include <CkHttpW.h>
#include <CkJsonObjectW.h>
#include <CkHttpResponseW.h>
void ChilkatSample(void)
{
// 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 = http.PostJson3(L"https://qa.factura1.com.co/v2/auth",L"application/json",json);
if (http.get_LastMethodSuccess() == false) {
wprintf(L"%s\n",http.lastErrorText());
return;
}
CkJsonObjectW jsonResp;
jsonResp.put_EmitCompact(false);
jsonResp.Load(resp->bodyStr());
delete resp;
wprintf(L"%s\n",jsonResp.emit());
wprintf(L"Access token: %s\n",jsonResp.stringOf(L"token"));
}
|