I\'m getting 400 errors trying to connect to a website.
How do I set the connection to display why the server is rejecting me?
try {
doc = Jsoup.connect(
HTTP 400 is "Bad Request". This could be a problem with the server, but it's probably a problem in your code. The best way to debug these things doesn't depend on the language you use: simply sniff the network traffic to see what your HTTP request looks like. You can also see the server's reply, to see if it gives any more information. Usually the server is fairly vague, for two reasons.
For sniffing HTTP traffic, I've used Wireshark; Charles also works, and there are plenty of others.
(If you just want to display the server's reason for the error, just display the HTTP response like any other.)
Edit: Code is nice, but we really need to see the HTTP request itself in order to figure out what is wrong with it. Get Wireshark or Charles, or point your client at a socket that dumps the request to a file.