Xpost 在 C++ 中使用 libcurl
Xpost using libcurl in C++
我目前在 bash 中使用 curl 并且有这样的东西:
cat req
{ "index" : { "_index": "override", "_type" : "type1", "_id" : "1" } }
{ "field1" : "value1" }
curl -XPOST localhost:80/testing/_bulk --data-binary @req
不过,我现在正在构建一个 C++ 程序,并且我正在努力实现同样的目标。我似乎找不到任何 C++ 示例来做 "xpost" 但我找到了声称可以做 post:
的代码
http://curl.haxx.se/libcurl/c/postit2.html
这是正确的方法还是我又找错树了?如果我是,谁能给我一个正确的方向。
不存在"xpost",查看simplepost示例http://curl.haxx.se/libcurl/c/simplepost.html
我目前在 bash 中使用 curl 并且有这样的东西:
cat req
{ "index" : { "_index": "override", "_type" : "type1", "_id" : "1" } }
{ "field1" : "value1" }
curl -XPOST localhost:80/testing/_bulk --data-binary @req
不过,我现在正在构建一个 C++ 程序,并且我正在努力实现同样的目标。我似乎找不到任何 C++ 示例来做 "xpost" 但我找到了声称可以做 post:
的代码http://curl.haxx.se/libcurl/c/postit2.html
这是正确的方法还是我又找错树了?如果我是,谁能给我一个正确的方向。
不存在"xpost",查看simplepost示例http://curl.haxx.se/libcurl/c/simplepost.html