由于某种原因,我不知道POST请求无效。我很确定问题出在POST字符串"POST /profile.php HTTP/1.1\r\nid=2323\r\nContent-Length: \r\n\r\n"
上。 GET请求正常运行,但POST请求无效。
我使用TLS VER 1.0通过端口443连接到服务器
这是我从服务器获得的错误代码。编辑:我正在尝试编辑此帖子以进行修复,它告诉我我的帖子主要是代码,但我希望不再。
85 bytes of data sent
HTTP/1.1 400 Bad Request
Content-Type: text/html; charset=utf-8
Date: Fri, 22 Nov 2019 06:56:20 GMT
Connection: close
Content-Length: 2959
<!DOCTYPE html>
<html lang="en" id="facebook">
<head>
<title>Facebook | Error</title>
<meta charset="utf-8">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="cache-control" content="no-store">
<meta http-equiv="cache-control" content="max-age=0">
<meta http-equiv="expires" content="-1">
<meta http-equiv="pragma" content="no-cache">
<meta name="robots" content="noindex,nofollow">
<style>
html, body {
color: #141823;
background-color: #e9eaed;
font-family: Helvetica, Lucida Grande, Arial,
Tahoma, Verdana, sans-serif;
margin: 0;
padding: 0;
text-align: center;
}
#header {
height: 30px;
padding-bottom: 10px;
padding-top: 10px;
text-align: center;
}
#icon {
width: 30px;
}
h1 {
font-size: 18px;
}
p {
font-size: 13px;
}
#footer {
border-top: 1px solid #ddd;
color: #9197a3;
font-size: 12px;
padding: 5px 8px 6px 0;
}
</style>
</head>
<body>
<div id="header">
<a href="//www.facebook.com/">
<img id="icon" src="//static.facebook.com/images/logos/facebook_2x.png" />
</a>
</div>
<div id="core">
<h1 id="sorry">Sorry, something went wrong.</h1>
<p id="promise">
We're working on it and we'll get it fixed as soon as we can.
</p>
<p id="back-link">
<a id="back" href="//www.facebook.com/">Go Back</a>
</p>
<div id="footer">
Facebook
<span id="copyright">
© 2019
</span>
<span id="help-link">
·
<a id="help" href="//www.facebook.com/help/">Help Center</a>
</span>
</div>
</div>
<script>
document.getElementById('back').onclick = function() {
if (history.length > 1) {
history.back();
return false;
}
};
// Adjust the display based on the window size
if (window.innerHeight < 80 || window.innerWidth < 80) {
// Blank if window is too small
document.body.style.display = 'none';
};
if (window.innerWidth < 200 || window.innerHeight < 150) {
document.getElementById('back-link').style.display = 'none';
document.getElementById('help-link').style.display = 'none';
};
if (window.innerWidth < 200) {
document.getElementById('sorry').style.fontSize = '16px';
};
if (window.innerWidth < 150) {
document.getElementById('promise').style.display = 'none';
};
if (window.innerHeight < 150) {
document.getElementById('sorry').style.margin = '4px 0 0 0';
document.getElementById('sorry').style.fontSize = '14px';
document.getElementById('promise').style.display = 'none';
};
</script>
</body>
</html>
3215 bytes received
答案 0 :(得分:0)
除了发出POST请求外,您还可以使用GET请求来代替
"GET /profile.php?id=2323 HTTP/1.1\r\nConnection: close\r\n\r\n"
这主要取决于您要连接的服务器,因此,如果这不起作用,请尝试使用HTTP v1.0
"GET /profile.php?id=2323 HTTP/1.0\r\nConnection: close\r\n\r\n"
如果仍然不起作用,则可能必须指定主机,主要是在您尝试从看起来像https://en30.picwebsite.com
的网站上获取图像时
"GET /profile.php?id=2323 HTTP/1.1\r\nHost: en30.picwebsite.com\r\nConnection: close\r\n\r\n"
同时尝试HTTP v1.0和v1.1
如果所有方法都不起作用,请确保您使用SSL / TLS进行连接(如果这是一个安全的网站)。如果是这样,请尝试使用一个简单的主页GET请求"GET / HTTP/1.1\r\nConnection: close\r\n\r\n"
以及HTTP v1.0和v1.1
如果这还是行不通的,那可能是您的Socket / TLS实现或服务器出现了问题。
编辑:
我终于弄清楚了如何发出适当的POST请求。您必须始终在POST请求中指定内容长度,并且该内容长度应为您查询的大小,例如-"std::string("id=2323&file=funpic&name=rosh").size()
,在我的情况下,查询必须在请求字符串的末尾进行在Connection: close\r\n\r\n
例如,在我之前的查询中,我想将id更改为2323 /profile.php?id=2323
,请执行id-
std::string query = "id=2323";
std::string request = "POST /profile.php HTTP/1.1\r\nContent-Length: " +
std::to_string(query.size()) + "\r\nConnection: close\r\n\r\n" + query;
send(sock, request.c_str(), request.size(), 0);
您还可以在查询后添加\r\n
,它仍然可以id=2323\r\n
请确保仅在完整请求之后添加查询,因为该查询应该位于网站内容之内,而不位于标题中。