我有一个带护照的快递应用程序用于身份验证。 在我的应用中,我使用Urdl enter link description here进行HTTP请求。
但我想用Urdl传递用户名和密码
true
但它给了我一个糟糕的要求(400) 我尝试使用curl
urdl::istream is;
is.set_option(urdl::http::request_method("POST"));
is.set_option(urdl::http::request_content_type("text/plain"));
is.set_option(urdl::http::request_content("username=test&password=test"));
host = urdl::url::from_string(http://some/path, ec);
is.open(host);
它正在工作,我收到了很好的答案
所以我真的不知道Urdl有什么问题
答案 0 :(得分:0)
不是text / plain而是application / x-www-form-urlencoded用于内容类型