Back to Collection Items
#include <CkHttpW.h>
#include <CkJsonObjectW.h>
#include <CkHttpResponseW.h>
void ChilkatSample(void)
{
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkHttpW http;
bool success;
http.put_BasicAuth(true);
http.put_Login(L"{{webservice_key}}");
http.put_Password(L"password");
CkJsonObjectW queryParams;
queryParams.UpdateString(L"schema",L"blank");
CkHttpResponseW *resp = http.QuickRequestParams(L"GET",L"https://localhost:8080/api/products",queryParams);
if (http.get_LastMethodSuccess() == false) {
wprintf(L"%s\n",http.lastErrorText());
return;
}
wprintf(L"%d\n",resp->get_StatusCode());
wprintf(L"%s\n",resp->bodyStr());
delete resp;
}
Curl Command
curl -G -d "schema=blank"
-u '{{webservice_key}}:password'
https://localhost:8080/api/products
Postman Collection Item JSON
{
"name": "Get product blank schema",
"request": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{webservice_url}}/api/products?schema=blank",
"host": [
"{{webservice_url}}"
],
"path": [
"api",
"products"
],
"query": [
{
"key": "schema",
"value": "blank"
}
]
}
},
"response": [
]
}