使用C ++ REST SDK(Casablanca)的Http_client发布请求

时间:2017-02-21 14:35:01

标签: c++ rest post sdk casablanca

我尝试使用C ++ REST SDK(Casablanca)库执行POST HTTP请求,但我没有成功...我也找不到任何最近/工作的代码段。 有人能帮助我吗?

使用我的以下代码,我获得了一个运行时 web :: json :: json_exception 说"不是字符串":

json::value postData;
postData[L"name"] = json::value::string(L"Joe Smith");
postData[L"sport"] = json::value::string(L"Baseball");

web::http::client::http_client client(L"https://jsonplaceholder.typicode.com/posts");

try
{
    client.request(
        methods::POST,
        L"",
        postData/*.as_string().c_str()*/,
        L"application/json");
}
catch (web::json::json_exception &je)
{
    std::cout << je.what();
}
catch (std::exception &e)
{
    std::cout << e.what();
}

1 个答案:

答案 0 :(得分:2)

这样的事情会对你有用:

        web::json::value json_v ;
        json_v["title"] = web::json::value::string("foo");
        json_v["body"] = web::json::value::string("bar");
        json_v["userId"] = web::json::value::number(1);
        web::http::client::http_client client("https://jsonplaceholder.typicode.com/posts");
        client.request(web::http::methods::POST, U("/"), json_v)
        .then([](const web::http::http_response& response) {
            return response.extract_json(); 
        })
        .then([&json_return](const pplx::task<web::json::value>& task) {
            try {
                json_return = task.get();
            }
            catch (const web::http::http_exception& e) {                    
                std::cout << "error " << e.what() << std::endl;
            }
        })
        .wait();

        std::cout << json_return.serialize() << std::endl;

您也可以简单地解析字符串:

        web::json::value json_par;
        json_par.parse("{\"title\": \"foo\", \"body\": \"bar\", \"userId\": 1}");

使用json对象后,与第一个示例相同。如果从文件中读取json,则会稍微容易一些。