Back to Collection Items
#include <C_CkHttp.h>
#include <C_CkJsonObject.h>
#include <C_CkHttpResponse.h>
void ChilkatSample(void)
{
HCkHttp http;
BOOL success;
HCkJsonObject queryParams;
HCkHttpResponse resp;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http = CkHttp_Create();
queryParams = CkJsonObject_Create();
CkJsonObject_UpdateString(queryParams,"q","prinec");
CkHttp_SetRequestHeader(http,"X-Meili-Api-Key","masterKey");
resp = CkHttp_QuickRequestParams(http,"GET","http://localhost:7700/indexes/indexUID/search",queryParams);
if (CkHttp_getLastMethodSuccess(http) == FALSE) {
printf("%s\n",CkHttp_lastErrorText(http));
CkHttp_Dispose(http);
CkJsonObject_Dispose(queryParams);
return;
}
printf("%d\n",CkHttpResponse_getStatusCode(resp));
printf("%s\n",CkHttpResponse_bodyStr(resp));
CkHttpResponse_Dispose(resp);
CkHttp_Dispose(http);
CkJsonObject_Dispose(queryParams);
}
Curl Command
curl -G -d "q=prinec"
-H "X-Meili-Api-Key: masterKey"
http://localhost:7700/indexes/indexUID/search
Postman Collection Item JSON
{
"name": "Search in index",
"request": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{url}}/indexes/{{indexUID}}/search?q=prinec",
"host": [
"{{url}}"
],
"path": [
"indexes",
"{{indexUID}}",
"search"
],
"query": [
{
"key": "q",
"value": "prinec"
},
{
"key": "offset",
"value": "0",
"disabled": true
},
{
"key": "limit",
"value": "1",
"disabled": true
},
{
"key": "attributesToRetrieve",
"value": "title,author",
"disabled": true
},
{
"key": "attributesToCrop",
"value": "title",
"disabled": true
},
{
"key": "attributesToHighlight",
"value": "*",
"disabled": true
},
{
"key": "cropLength",
"value": "5",
"disabled": true
},
{
"key": "filter",
"value": "genre=\"fantasy\"",
"disabled": true
},
{
"key": "matches",
"value": "true",
"disabled": true
},
{
"key": "facetsDistribution",
"value": "genre",
"disabled": true
},
{
"key": "sort",
"value": "price",
"disabled": true
}
]
}
},
"response": [
]
}