How to find out specifics of 400 Http error in Java?

后端 未结 2 343
长发绾君心
长发绾君心 2021-01-23 19:38

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(         


        
2条回答
  •  走了就别回头了
    2021-01-23 20:29

    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.

    • People writing HTTP servers aren't setting out to help people debug HTTP clients, and
    • Error codes that are too specific can cause security problems.

    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.

提交回复
热议问题