Back to Collection Items
#include <C_CkHttpW.h>
#include <C_CkHttpRequestW.h>
#include <C_CkHttpResponseW.h>
void ChilkatSample(void)
{
HCkHttpW http;
BOOL success;
HCkHttpRequestW req;
HCkHttpResponseW resp;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http = CkHttpW_Create();
CkHttpW_putBasicAuth(http,TRUE);
CkHttpW_putLogin(http,L"{{webservice_key}}");
CkHttpW_putPassword(http,L"password");
req = CkHttpRequestW_Create();
CkHttpRequestW_putHttpVerb(req,L"POST");
CkHttpRequestW_putPath(req,L"/api/images/products/1");
CkHttpRequestW_putContentType(req,L"multipart/form-data");
success = CkHttpRequestW_AddFileForUpload2(req,L"image",L" path to file",L"application/octet-stream");
CkHttpRequestW_AddHeader(req,L"Expect",L"100-continue");
resp = CkHttpW_SynchronousRequest(http,L"localhost",8080,TRUE,req);
if (CkHttpW_getLastMethodSuccess(http) == FALSE) {
wprintf(L"%s\n",CkHttpW_lastErrorText(http));
CkHttpW_Dispose(http);
CkHttpRequestW_Dispose(req);
return;
}
wprintf(L"%d\n",CkHttpResponseW_getStatusCode(resp));
wprintf(L"%s\n",CkHttpResponseW_bodyStr(resp));
CkHttpResponseW_Dispose(resp);
CkHttpW_Dispose(http);
CkHttpRequestW_Dispose(req);
}
Curl Command
curl -X POST
-u '{{webservice_key}}:password'
-H "Content-Type: application/json"
--form 'image=@"/path/to/file"'
https://localhost:8080/api/images/products/1
Postman Collection Item JSON
{
"name": "6 - Upload image",
"event": [
{
"listen": "prerequest",
"script": {
"exec": [
"",
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "formdata",
"formdata": [
{
"key": "image",
"type": "file",
"src": [
]
}
]
},
"url": {
"raw": "{{webservice_url}}/api/images/products/{{product_id}}",
"host": [
"{{webservice_url}}"
],
"path": [
"api",
"images",
"products",
"{{product_id}}"
]
}
},
"response": [
]
}