Using WebRequest i want to know if i get a "302 Moved Temporarily" response instead of automatically get the new url

link|improve this question

74% accept rate
For .NET? Java? MSX? – Alfred Myers Sep 8 '09 at 0:11
2  
WebRequest is a .NET class. – jimyi Sep 8 '09 at 0:14
Actually tags say everything about code. – Braveyard Sep 8 '09 at 0:28
1  
They didn't before Aaron. jimyi retagged it. – Nathan Taylor Sep 8 '09 at 0:47
whoops, i assume if you wouldnt know how to do it with WebRequest if you dont know what WebRequest is. .NET is a better tag, oops. – acidzombie24 Sep 8 '09 at 1:35
feedback

2 Answers

up vote 11 down vote accepted

If you want to detect a redirect response, instead of following it automatically create the WebRequest and set the AllowAutoRedirect property to false:

HttpWebRequest req = WebRequest.Create(someUrl) as HttpWebRequest;
req.AllowAutoRedirect = false;
HttpWebResponse response = request.GetResponse() as HttpWebResponse;
if (response.StatusCode == HttpStatusCode.Redirect || 
    response.StatusCode == HttpStatusCode.MovedPermanently)
{
    // Do something...
    string newUrl = response.Headers["Location"];
}
link|improve this answer
1  
Haven't verified this myself, but I just found something saying: "If the HttpWebRequest.AllowAutoRedirect property is false, HttpStatusCode.Found will cause an exception to be thrown." Source: www1.cs.columbia.edu/~lok/csharp/refdocs/System.Net/types/… – Nathan Taylor Sep 8 '09 at 0:41
@Nathan: I don't really see how, since HttpStatusCode is an enum. The linked documentation (needs to end in '.html' BTW) appears to be out of date; that sentence was probably a cut-and-paste bug. – devstuff Sep 8 '09 at 3:12
BTW, you can also use HttpStatusCode.Redirect (another alias for 302), which is a bit more obvious. – devstuff Sep 8 '09 at 3:14
amended the alias and added 301 as well – Sam Saffron Apr 26 at 5:50
Thanks for that @Sam. – devstuff May 21 at 0:22
feedback

Like so:

HttpWebResponse response;
int code = (int) response.StatusCode;

The code should be

HttpStatusCode.TemporaryRedirect
link|improve this answer
1  
HttpStatusCode.TemporaryRedirect is a 307. www1.cs.columbia.edu/~lok/csharp/refdocs/System.Net/types/… – Nathan Taylor Sep 8 '09 at 0:34
I can now see the reponse code, but it still redirects and gives me 'OK' – acidzombie24 Sep 8 '09 at 0:47
@Nathan Taylor: I copy/pasted what CURL gave me using curl -I "url" – acidzombie24 Sep 8 '09 at 0:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.