我目前在bash中使用curl并具有以下内容:
cat req
{ "index" : { "_index": "override", "_type" : "type1", "_id" : "1" } }
{ "field1" : "value1" }
curl -XPOST localhost:80/testing/_bulk --data-binary @req
但是,我现在正在构建一个c++程序,并且试图实现相同的目的。我似乎找不到任何可以执行“xpost”的c++示例,但是我发现了声称可以发表的代码:
http://curl.haxx.se/libcurl/c/postit2.html
这是正确的方法还是我又在错误的树上吠叫?如果我是,请问任何人都可以朝正确的方向推一下。
最佳答案
没有“xpost”之类的东西,请查看简单发布示例http://curl.haxx.se/libcurl/c/simplepost.html