curl PATCH更新值可以作为curl命令使用,但在libcurl c++中不起作用,有什么问题吗



我正试图使用curl库在c++代码中复制以下curl命令,但没有成功。curl命令是(url是一个实际的url,我只是把它隐藏起来(:

curl -iX PATCH '*URL*/attrs/topicData' 
-H 'Content-Type: application/json' 
-H 'Link: <http://context-provider:3000/data-models/ngsi-context.jsonld>; rel="http://www.w3.org/ns/json-ld#context"; type="application/ld+json"' 
--data-raw '{
"value": "Hi, new data test",
"type": "Property"
}'

这样做非常好,并根据需要更新值。我的问题是我无法在c++代码中复制它。我正在使用nlohmann json库,以防有帮助。

我的c++代码是:

json ent={
{"type","Property"},
{"value","updated successfully"}
};
curl_global_init(CURL_GLOBAL_DEFAULT);
std::string json_entity = ent.dump();
curl = curl_easy_init();
if (curl) {
// Add headers
struct curl_slist *headers = NULL;
headers = curl_slist_append(headers, "Content-Type: application/json");
headers = curl_slist_append(headers, R"(Link: <http://context-provider:3000/data-models/ngsi-context.jsonld>; rel="http://w3.org/ns/json-ld#context"; type="application/ld+json")");
// Set custom headers
curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
// Set URL
curl_easy_setopt(curl, CURLOPT_URL, "*URL*/attrs/topicData");
// Set request type
curl_easy_setopt(curl, CURLOPT_CUSTOMREQUEST, "PATCH");
// Set values
curl_easy_setopt(curl, CURLOPT_POSTFIELDS,json_entity);
// Perform the request which prints to stdout
result = curl_easy_perform(curl);
// Error check
if (result != CURLE_OK) {
std::cerr << "Error during curl request: " 
<< curl_easy_strerror(result) << std::endl;
}
//Free header list
curl_slist_free_all(headers);
curl_easy_cleanup(curl);
}
else {
std::cerr << "Error initializing curl." << std::endl;
}

我得到的错误是:"类型":"http://uri.etsi.org/ngsi-ld/errors/InvalidRequest","标题":"无效的请求&";,"细节":"无效的请求">

我认为我的问题是在设定值命令,但我不确定问题是什么

谁能告诉我我做错了什么吗?

CURLOPT_POSTFIELDS需要char*,但您提供的是std::string

这应该效果更好:

curl_easy_setopt(curl, CURLOPT_POSTFIELDS, json_entity.data());

相关内容

  • 没有找到相关文章

最新更新