如何将 webbrowsr 控件与 Httpwebrequest 一起使用?

发布于 2024-11-18 05:51:51 字数 258 浏览 2 评论 0原文

我正在使用网络浏览器控件,我从搜索结果中获取所有配置文件的所有 url 列表。

之后有什么方法可以使用 httpwebrequest 从 url 获取数据吗?

我想使用搜索配置文件 api 中的链接,但这非常令人困惑。 我也尝试使用 httpwebrequest 但它带我到 linkedin 登录页面。

我正在考虑使用网络浏览器控件登录linkedin时可能使用网络浏览器的信息并添加我的请求来假装登录的任何方式。

有什么想法吗?请帮忙

I am using webbrowser control , and i get list of all the url of all the profiles from the search result.

After this is there any way that i use httpwebrequest to get the data from the urls?

I wanted to use the Linked in search profile api but that is very confusing.
Also i tried using httpwebrequest but it takes me to the linkedin login page.

I was thinking of any way that as i signed in to linkedin using the webbrowser control maybe using that information of webbrowser and adding with my request to pretend to be logged in .

Any ideas? Please help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

享受孤独 2024-11-25 05:51:51

HttpWebRequest 将您发送到登录页面,因为没有经过验证的 cookie。
因此,您可以使用 WebBrowser 控件进行连接并获取 cookie,然后将 cookie 放入 webrequest 中

        webBrowser.Navigate(someUrl);

        ...

        CookieContainer cookies = new CookieContainer();
        foreach (string cookie in webBrowser.Document.Cookie.Split(';'))
        {
            string name = cookie.Split('=')[0];
            string value = cookie.Substring(name.Length + 1);
            string path = "/";
            string domain = "yourdomain.com";
            cookies.Add(new Cookie(name.Trim(), value.Trim(), path, domain));
        }


        HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
        request.CookieContainer = cookies;
        ...

The HttpWebRequest sent you to the login page, because there isn´t the cookie with the validation.
So, you'll can connect using WebBrowser control and get the cookie, then put the cookie in the webrequest

        webBrowser.Navigate(someUrl);

        ...

        CookieContainer cookies = new CookieContainer();
        foreach (string cookie in webBrowser.Document.Cookie.Split(';'))
        {
            string name = cookie.Split('=')[0];
            string value = cookie.Substring(name.Length + 1);
            string path = "/";
            string domain = "yourdomain.com";
            cookies.Add(new Cookie(name.Trim(), value.Trim(), path, domain));
        }


        HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
        request.CookieContainer = cookies;
        ...
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文