Unicode C
Unicode C
Simple GET using REST
See more REST Examples
Demonstrates how to do a simple HTTP GET request using REST.Chilkat Unicode C Downloads
#include <C_CkRestW.h>
void ChilkatSample(void)
{
BOOL success;
HCkRestW rest;
BOOL bTls;
int port;
BOOL bAutoReconnect;
const wchar_t *responseJson;
success = FALSE;
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
rest = CkRestW_Create();
// Connect to the REST server.
bTls = TRUE;
port = 443;
bAutoReconnect = TRUE;
success = CkRestW_Connect(rest,L"my-store.com",port,bTls,bAutoReconnect);
responseJson = CkRestW_fullRequestNoBody(rest,L"GET",L"/wp-json/wc/v1/products?consumer_key=YOUR_CONSUMER_KEY&consumer_secret=YOUR_CONSUMER_SECRET");
if (CkRestW_getLastMethodSuccess(rest) != TRUE) {
wprintf(L"%s\n",CkRestW_lastErrorText(rest));
CkRestW_Dispose(rest);
return;
}
wprintf(L"%s\n",responseJson);
wprintf(L"----\n");
// We can alternatively do this:
CkRestW_ClearAllQueryParams(rest);
CkRestW_AddQueryParam(rest,L"consumer_key",L"YOUR_CONSUMER_KEY");
CkRestW_AddQueryParam(rest,L"consumer_secret",L"YOUR_CONSUMER_SECRET");
responseJson = CkRestW_fullRequestNoBody(rest,L"GET",L"/wp-json/wc/v1/products");
if (CkRestW_getLastMethodSuccess(rest) != TRUE) {
wprintf(L"%s\n",CkRestW_lastErrorText(rest));
CkRestW_Dispose(rest);
return;
}
wprintf(L"%s\n",responseJson);
CkRestW_Dispose(rest);
}