//PUT Request
#include <stdio.h>
#include <string.h>
#include <curl/curl.h>
int main(int argc, char const *argv[]){
CURL *curl;
CURLcode res;
long http_code;
static const char *jsonObj = //insert json here
curl = curl_easy_init();
curl_global_init(CURL_GLOBAL_ALL);
if(curl){
curl_easy_setopt(curl, CURLOPT_URL, "//insert your url here");
curl_easy_setopt(curl, CURLOPT_HTTPAUTH, (long)CURLAUTH_BASIC);
curl_easy_setopt(curl, CURLOPT_USERPWD, "root:");
curl_easy_setopt(curl, CURLOPT_CUSTOMREQUEST, "PUT");
curl_easy_setopt(curl, CURLOPT_POSTFIELDS, jsonObj);
//enable to spit out information for debugging
//curl_easy_setopt(curl, CURLOPT_VERBOSE,1L);
res = curl_easy_perform(curl);
if (res != CURLE_OK){
fprintf(stderr, "curl_easy_perform() failed: %s\n", curl_easy_strerror(res));
}
printf("\nget http return code\n");
curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &http_code);
printf("http code: %lu\n", http_code);
curl_easy_cleanup(curl);
curl_global_cleanup();
}
return 0;
}
這是我想出的解決方案。請隨時添加/改進
您是否設置了內容類型標題?例如'curl -v -H「接受:application/json」-H「Content-type:application/json」' –