我想了解更多有关如何从Windows窗体应用程序登录网站的信息
我尝试登录的网站os z8games.com
我使用谷歌浏览器的RequestMaker来获取帖子信息。我们的想法是自动获取我的部落成员数据,以便了解正在发生的事情
有人可以帮我吗?
答案 0 :(得分:2)
当我尝试从需要凭据的网站获取XML文件时,我使用了以下内容:
public static void GetFileWithCredentials(string userName, string password, string url)
{
using (WebClient wc = new WebClient())
{
wc.Credentials = new NetworkCredential(userName, password);
string xml = wc.DownloadString(url);
XmlDocument tournamentsXML = new XmlDocument();
tournamentsXML.LoadXml(xml);
}
}
希望它对你有用。如果不是,那么可以发布一个您想要获得的数据的示例吗?我会首先评论,但我的名声似乎不允许我!