Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I get the final URL of a Http request when I use HttpMethod.setFollowRedirects(true). I am using apache Httpclient - GetMethod.

share|improve this question
Would this be HttpClient 3 or 4? They have significant API differences. – Esko Oct 10 '10 at 6:55

1 Answer

Have you tried method.getURI(), or as suggested by Stephen - method.getPath() ?

share|improve this answer
1  
Certainly the getPath() method is documented as returning the path used after redirections have been performed. The getURI() method doesn't say one way or the other, but it would be a reasonable assumption that it behaves the same way as getPath(). – Stephen C Oct 10 '10 at 6:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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