c# - 使用 WebRequest 和 WebResponse 登录 Https 网站不起作用 C#

标签 c# .net authentication https httpwebrequest

我正在开发一个程序,该程序将登录网站并获取某些数据。然而,我在发布登录参数和处理 cookie 时遇到了麻烦,因为每次我都会收到一个页面,显示“您已注销或 session 已过期”。很明显,我在发布参数或处理 cookie 时做错了什么,但不知道是哪一个。我已经为此工作了一段时间,但无法理解为什么它不能正常工作。

void Login2(string username, string password)
    {
        string pageSource;
        string formUrl = "https://forUrl.com";
        string formParams = string.Format("login={0}&sslProt={1}&pwd={2}&gru={3}", username, "", password, "115237091");
        string cookieHeader;

        HttpWebRequest req = (HttpWebRequest)WebRequest.Create(formUrl);
        req.AllowAutoRedirect = false;
        req.ContentType = "application/x-www-form-urlencoded";
        req.Method = "POST";
        byte[] bytes = System.Text.Encoding.ASCII.GetBytes(formParams);
        req.ContentLength = bytes.Length;
        using (Stream os = req.GetRequestStream())
        {
            os.Write(bytes, 0, bytes.Length);
        }
        HttpWebResponse resp = (HttpWebResponse)req.GetResponse();
        cookieHeader = resp.Headers["Set-cookie"];

        string getUrl = "https://Urlbehindform.com";   
        HttpWebRequest getRequest = (HttpWebRequest)WebRequest.Create(getUrl);
        getRequest.Method = "GET";
        getRequest.AllowAutoRedirect = false;
        getRequest.Headers.Add("Cookie", cookieHeader);
        HttpWebResponse getResponse = (HttpWebResponse)getRequest.GetResponse();
        using (StreamReader sr = new StreamReader(getResponse.GetResponseStream()))
        {
            pageSource = sr.ReadToEnd();
        }
        Response.Redirect(getUrl);

    }

我在执行 POST 时获取 cookie,并在执行 GET 时将其发回,但由于某种原因,这似乎不起作用。起初我以为是参数问题,但在使用 Firefox 的 Tamper Data 进一步查看问题后,登录参数似乎工作正常。任何帮助都会很棒,因为我已经为此工作了一段时间,但无法理解它。谢谢!

更新:

尝试了一些建议后,我仍然无法让它发挥作用。然而,在深入研究数据篡改后,似乎有一个带有登录参数的 POST,然后是到另一个页面的 GET,最后是到登录页面之后的页面的 GET(我想要访问的页面) 。经过进一步调试后,我实际上发现我的登录 POST 并没有像我想象的那样工作,因为响应头位置显示“/cv/scripts/A028/eng/logErr.asp”。这意味着我的其余代码可能一直都很好,只是 POST 没有给我一个有效的登录。关于为什么我总是收到登录错误页面有什么建议吗?一如既往地感谢您的帮助。

更新:

进一步研究 Tamper Data 后发现,我无法成功登录的原因是为了成功 POST 参数,需要已经获得 cookie。我该怎么做呢?

最佳答案

使用单个CookieContainer对于这两个请求。那么您就不必手动复制 cookie。

我[BMW1]添加了一个名为cookies的CookieContainer,但它仍然不起作用,我不确定我是否以正确的方式使用CookieContainer。这是我的代码的更新版本。

由我 [Hans Kesting] 编辑,请参阅 [HK] 的评论

    void Login2(string username, string password)
    {
        string pageSource;
        string formUrl = "https://server/cv/scripts/A028/eng/logProc.asp?ntry=0&dbg=";
        string formParams = string.Format("login={0}&sslProt={1}&pwd={2}&gru={3}", username, "", password, "115237091");

        // [HK] create a container for the cookies, where they are added automatically
        CookieContainer cookies = new CookieContainer();
        HttpWebRequest req = (HttpWebRequest)WebRequest.Create(formUrl);
        req.CookieContainer = cookies;
        req.AllowAutoRedirect = false;
        req.ContentType = "application/x-www-form-urlencoded";
        req.Method = "POST";
        byte[] bytes = System.Text.Encoding.ASCII.GetBytes(formParams);
        req.ContentLength = bytes.Length;
        using (Stream os = req.GetRequestStream())
        {
            os.Write(bytes, 0, bytes.Length);
        }
        HttpWebResponse resp = (HttpWebResponse)req.GetResponse();
        // [HK] no need to add cookies "by hand", that will happen automatically
        //cookies.Add(resp.Cookies);


        string getUrl = "https://server/cv/scripts/A028/eng/home.asp";
        HttpWebRequest getRequest = (HttpWebRequest)WebRequest.Create(getUrl);
        // [HK] use the same cookiecontainer as on the first request - correct
        getRequest.CookieContainer = cookies; 
        getRequest.Method = "GET";
        getRequest.AllowAutoRedirect = false;
        HttpWebResponse getResponse = (HttpWebResponse)getRequest.GetResponse();
        // [HK] no need to add cookies, they should be there already
        //cookies.Add(getResponse.Cookies);
        using (StreamReader sr = new StreamReader(getResponse.GetResponseStream()))
        {
            pageSource = sr.ReadToEnd();
        }
        // [HK] no need to add cookies, they should be there already
        // cookies.Add(getResponse.Cookies);
        Response.Redirect(getUrl);

    }

关于c# - 使用 WebRequest 和 WebResponse 登录 Https 网站不起作用 C#,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11034594/

相关文章:

c# - GDI+、JPEG Image to MemoryStream 中出现一般性错误

c# - 为什么 IEnumerable<T> 派生自 IEnumerable?

java - Spring Boot中如何记住用户?

c# - 我无法使用 C# 将数据保存到 SQL 数据库

c# - 卸载非安装程序创建的文件

c# - microsoft.interop.excel 格式化单元格

api - GCP 客户端工具的最佳身份验证策略

c# - 从管理 UI 控制列表的排序顺序

.net - Field.Set OmitNorms(true) 有什么用;在 lucene 中

python - DJANGO:如何允许用户更改密码?