gpt4 book ai didi

c++ - LibCurl 似乎逃脱了我的 POSTFIELDS

转载 作者:行者123 更新时间:2023-11-28 06:37:56 24 4
gpt4 key购买 nike

我正在使用此代码将 json 发布到服务器:

但似乎 CURL 在某处转义了数据,即将其转换为"{\"email\":\"test@example.se\"}"(使我的引号转义)。我认为 curl 仍然使用 Content-Type“application/x-www-form-urlencoded”发布,即使我已经在标题中用 application/json 覆盖了它。我怎样才能让 curl 不这样做?

curl_easy_setopt(curl, CURLOPT_URL, url.c_str());
curl_easy_setopt(curl, CURLOPT_POST, 1L);
const std::string& data = "{\"email\":\"test@example.se\"}";
curl_easy_setopt(curl, CURLOPT_POSTFIELDS, data.c_str() );
curl_easy_setopt(curl, CURLOPT_POSTFIELDSIZE, data.size() );
// Headers
curl_easy_setopt(headers, "Content-Type: application/json");
curl_easy_setopt(headers, "Authorization: Basic: something:something");
curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
curl_easy_perform(curl);

最佳答案

来自这里:http://curl.haxx.se/libcurl/c/CURLOPT_POSTFIELDS.html

libcurl 不会以任何方式为您转换或编码它。

指向的数据不会被库复制:因此,它必须由调用应用程序保留,直到关联的传输完成。

您确定您遵守了这些通知吗?

关于c++ - LibCurl 似乎逃脱了我的 POSTFIELDS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26488123/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com