2

在哪里可以看到使用 boost::asio 的 HTTP POST 请求示例?

我只看到了一些带有 HTTP GET 请求的示例。

4

2 回答 2

0

See How are parameters sent in an HTTP POST request?

The ASIO part (sending the data) is similar to the example with GET. The difference is what data is sent (HTTP header and content).

于 2013-10-24T11:02:07.643 回答
0

看看这个 http 请求头,例如:

POST /path/script.cgi HTTP/1.0
From: test@tests.com
User-Agent: HTTPTool/1.0
Content-Type: application/x-www-form-urlencoded
Content-Length: 32

argument1=text&argument2=arg2text

查看 get 示例并将请求更改为此。可能会更改您认为应该更改的任何内容

于 2013-10-24T10:47:23.663 回答