所以我想要做的是登录到一个网站,然后发出一个 POST 请求。我试过只做一个网络浏览器,然后简单地登录,然后用一个按钮提交 POST 数据。我不确定它是否不能以这种方式工作,因为它没有通过 webbrowser1 发送,或者因为我没有正确提交 POST 数据。这是提交 POST 数据的代码。
HttpWebRequest req = (HttpWebRequest)
WebRequest.Create("url");
req.Method = "POST";
req.ContentType = "application/x-www-form-urlencoded";
string postData = "postdata";
req.ContentLength = postData.Length;
StreamWriter stOut = new
StreamWriter(req.GetRequestStream(),
System.Text.Encoding.ASCII);
stOut.Write(postData);
stOut.Close();
我还尝试使用一个按钮登录,然后使用另一个按钮登录,提交此 POST 数据,但问题是它需要 POST 请求中的 CSRF 令牌。这是我到目前为止所拥有的。
string formUrl = "loginurl";
string formParams = string.Format("username={0}&password={1}&csrfmiddlewaretoken={2}", "user", "pass", "token");
string cookieHeader;
WebRequest req = WebRequest.Create(formUrl);
req.ContentType = "application/x-www-form-urlencoded";
req.Method = "POST";
byte[] bytes = Encoding.ASCII.GetBytes(formParams);
req.ContentLength = bytes.Length;
using (Stream os = req.GetRequestStream())
{
os.Write(bytes, 0, bytes.Length);
}
WebResponse resp = req.GetResponse();
cookieHeader = resp.Headers["Set-cookie"];
这样做的最佳方法是什么?谢谢!