0

我必须在 C++ 中使用纯套接字发送后请求。我不明白将请求正文发送到哪里:

int *binary = new int[bufferLength];
...

std::stringstream out(data);
out << "POST /push1_pub?id=game HTTP/1.1\n";
out << "Host: http://0.0.0.0:80\n";
out << "Content-Length: ";
out << bufferLength*sizeof(int);
out << "\r\n\r\n";
out << binary;

if (socket.send(data.c_str(), data.size()) == -1)
{
    std::cout << "Failed to send headers\n";
}
else
{
    // Send request body
    socket.send(reinterpret_cast<char*>(binary), bufferLength*sizeof(int));
    // Get the answer of server
    char buf[1024];
    std::cout << socket.recv(buf, 1024) << std::endl;
    std::cout << buf << std::endl;
}

但是在buf发送正文后,我有:

<html>
<head><title>400 Bad Request</title></head>
<body bgcolor="white">
<center><h1>400 Bad Request</h1></center>
<hr><center>nginx</center>
</body>
</html>

这里有什么问题?


更新

由于您的评论,我写了新的标题:

std::string data;
std::stringstream out(data);
out << "POST /push1_pub?id=game\r\n";
out << "Host: http://localhost\r\n";
out << "Content-Length: ";
out << bufferLength << "\r\n";
out << "\r\n\r\n";
out << binary;

仍然有同样的问题。


更新2

使用此命令:curl -s -v -X POST 'http://0.0.0.0/push1_pub?id=game' -d 'Test'一切正常,并正确生成和发送发布请求。

4

1 回答 1

2

您的主机线路错误。它应该是一个简单的主机名,例如“localhost”或“example.com”,而不是http://0.0.0.0:80您现在获得的 URL。

网络服务器使用主机行来识别正在请求托管在单个 IP 上的潜在数千个站点中的哪一个。端口号也无用,因为在您发送 HTTP 标头时,TCP 连接已经建立。而且由于您已经在执行 HTTP 请求,因此无需冗余指定正在使用的协议。

于 2012-04-15T04:23:41.223 回答