为什么WebRequest使用无效的URL?

时间:2013-03-07 13:22:20

标签: c# httpwebrequest

我正在尝试使用HTTPWebRequest登录网站,但它确实有效。问题是,即使我传递了错误的凭据,或者错误的URL,它也能正常工作。没有例外。

如何在以下代码中获取异常?

try
{
    WebRequest request = WebRequest.Create("http://192.1111.1.1111");
    ViewBag.Message = request.ContentLength;
}
catch (Exception e)
{
    ViewBag.Message = "failed";
}

或者还有其他工作吗?

5 个答案:

答案 0 :(得分:4)

您实际上并没有发出请求,只是创建了类。要发出请求,您需要阅读响应。您也可以通过访问请求流来发起请求。

//Create a new WebRequest Object to the mentioned URL.
WebRequest myWebRequest=WebRequest.Create("http://www.contoso.com");

// This will throw an exception if the request fails
WebResponse myWebResponse=myWebRequest.GetResponse();

答案 1 :(得分:2)

您没有使用此代码执行请求,您必须添加以下内容:

try
{
    WebRequest request = WebRequest.Create("http://192.1111.1.1111");
    HttpWebResponse response = (HttpWebResponse)request.GetResponse();
    ViewBag.Message = response.ContentLength;
}
catch (WebException e)
{
    ViewBag.Message = "failed";
}

除此之外,您可以查看Status code(401 Unauthorized等)

答案 2 :(得分:0)

您需要实际提出请求,而不仅仅是创建类。

您可以通过以下方式获得回复:

HttpWebResponse response = (HttpWebResponse)request.GetResponse();

答案 3 :(得分:0)

您提供的代码示例只是初始化请求对象。您提供给请求的参数被认为是有效的,并且没有引发异常。

当您进行连接尝试时,可能会引发错误。

请参阅MSDN docs on WebRequest.Create()以获取有关异常及其引发时间的详细信息。

答案 4 :(得分:0)

感谢人......我研究了你的答案,是的确有效...我能用一些有效的证书登录到facebook ...这太棒了!!! :)下面是我的最终代码: -

        CookieCollection cookies = new CookieCollection();
        HttpWebRequest request = (HttpWebRequest)WebRequest.Create(@"https://www.facebook.com");
        request.CookieContainer = new CookieContainer();
        request.CookieContainer.Add(cookies);
        //Get the response from the server and save the cookies from the first request..
        HttpWebResponse response = (HttpWebResponse)request.GetResponse();
        cookies = response.Cookies;



        string getUrl = "https://www.facebook.com/login.php?login_attempt=1";
        string postData = String.Format("email={0}&pass={1}", "", "");
        HttpWebRequest getRequest = (HttpWebRequest)WebRequest.Create(getUrl);
        getRequest.CookieContainer = new CookieContainer();
        getRequest.CookieContainer.Add(cookies); //recover cookies First request
        getRequest.Method = WebRequestMethods.Http.Post;
        getRequest.UserAgent = "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.2 (KHTML, like Gecko) Chrome/15.0.874.121 Safari/535.2";
        getRequest.AllowWriteStreamBuffering = true;
        getRequest.ProtocolVersion = HttpVersion.Version11;
        getRequest.AllowAutoRedirect = true;
        getRequest.ContentType = "application/x-www-form-urlencoded";

        byte[] byteArray = Encoding.ASCII.GetBytes(postData);
        getRequest.ContentLength = byteArray.Length;
        Stream newStream = getRequest.GetRequestStream(); //open connection
        newStream.Write(byteArray, 0, byteArray.Length); // Send the data.
        newStream.Close();

        HttpWebResponse getResponse = (HttpWebResponse)getRequest.GetResponse();
        using (StreamReader sr = new StreamReader(getResponse.GetResponseStream()))
        {
            string sourceCode = sr.ReadToEnd();
            ViewBag.Message = sourceCode;

        }

当然,除了httpwebrequest和httpwebresponse之外,代码还有很多其他的东西......
1)您必须运行httpwebrequest两次以首先获取cookie集合然后使用相同的cookiecollection实际登录coz facebook在登录之前设置某些cookie,以便在登录时获取它... 2)(这是我之前的问题的答案,即如何检查URL是否正常工作)所以你做的是获取字符串中的页面内容(在本例中为sourceCode)n然后只搜索你认为的特定字符串可能会在结果页面中出现...就像在这种情况下,如果我已成功登录,我可能会被重定向到FB上用户的主页。并且该页面可能包含用户名或页面标题等内容是“Facebook”...等等...所以我们如何检查有或没有凭据的URL成功....

多数民众赞成......这个简单的事情让我差不多三天...... !!!可笑!