gpt4 book ai didi

c# - 使用 HttpWebRequest 登录到 Https 网站后的 Htmlagilitypack?

转载 作者:太空宇宙 更新时间:2023-11-03 15:21:01 26 4
gpt4 key购买 nike

我想解析一些 html 网站,例如 pluralsight,例如(https://app.pluralsight.com/id ?),那么我如何首先以编程方式登录网站(不使用网络浏览器控件)然后调用另一个 url(例如:Pluralsight)并获得响应并使用 Htmlagility 包进行解析。

但是我已经写了一个登录代码,但是我不知道下一步。

public class Login
{
private CookieContainer Cookies = new CookieContainer();



public void SiteLogin(string username, string password)
{
Uri site = new Uri("https://app.pluralsight.com/id?");

HttpWebRequest wr = (HttpWebRequest)WebRequest.Create(site);
wr.Method = "Post";
wr.ContentType = "application/x-www-form-urlencoded";
wr.Referer = "https://app.pluralsight.com/id?";
wr.CookieContainer = Cookies;
var parameters = new Dictionary<string, string>{
{"realm", "vzw"},
{"goto",""},
{"gotoOnFail",""},
{"gx_charset", "UTF-8"},
{"rememberUserNameCheckBoxExists","Y"},
{"IDToken1", username},
{"IDToken2", password}
};

string input = string.Empty;
using (var requestStream = wr.GetRequestStream())
using (var writer = new StreamWriter(requestStream, Encoding.UTF8))
writer.Write(ParamsToFormEncoded(parameters));

using (var response = (HttpWebResponse)wr.GetResponse())
{

if (response.StatusCode == HttpStatusCode.OK)
{
//but I do not know the next step.
}
}
}

private string ParamsToFormEncoded(Dictionary<string, string> parameters)
{
return string.Join("&", parameters.Select(kvp => Uri.EscapeDataString(kvp.Key).Replace("%20", "+")
+ "=" + Uri.EscapeDataString(kvp.Value).Replace("20%", "+")
).ToArray());
}
}

最佳答案

您必须通过 HttpWebResponse.GetResponseStream 获取响应流然后通过 HtmlDocument 的 Load 方法加载文档。

var doc = new HtmlAgilityPack.HtmlDocument();
doc.Load(response.GetResponseStream());
//further processing...

关于c# - 使用 HttpWebRequest 登录到 Https 网站后的 Htmlagilitypack?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37385103/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com