1. 程式人生 > 其它 >jsoup post方式請求介面錯誤“HTTP error fetching URL. Status=400”解決方法

jsoup post方式請求介面錯誤“HTTP error fetching URL. Status=400”解決方法

技術標籤:Javajsoup400

錯誤資訊:

Exception in thread "main" org.jsoup.HttpStatusException: HTTP error fetching URL. Status=400, URL=“xxxxxxx”

折騰了很久才找到解決方法:

 .ignoreContentType(true)
 .ignoreHttpErrors(true)

新增上面兩個屬性問題解決!get()的時候一般不會有問題,但是如果你是post方式提交資料到介面,報錯的概率相當高,建議

不管是post,還是get,均開啟這兩個引數,萬無一失!