JSoup:请求 JSON 响应

2022-09-01 16:39:08

我正在使用JSoup进行身份验证,然后连接到网站。某些 URL 具有 JSON 响应(因为站点的一部分位于 AJAX 中)。JSoup 可以处理 JSON 响应吗?

Connection.Response doc = Jsoup.connect("...")
                               .data(...)
                               .cookie(...)
                               .header(...)
                               .method(Method.POST)
                               .execute();
String result = doc.body()

在我的情况下,身体是“”。

  • 是因为JSoup不知道如何处理JSON吗?(当然没有)
  • 还是因为我的请求中有错误?

有没有JSoup像JSON的库?


答案 1

您可以使用以下命令获取 JSON 或其他数据格式:

// JSON example
String json = Jsoup.connect(url).ignoreContentType(true).execute().body();

答案 2

试试这个

使用标题“Accept:text/javascript”

 String InboxJson=Jsoup.connect("https://www.fiverr.com/conversations/Json")
                            .timeout(1000000) 
                            .header("Accept", "text/javascript")
                            .userAgent("Mozilla/5.0 (Windows NT 6.1; rv:40.0) Gecko/20100101 Firefox/40.0")
                            .get()
                            .body()
                            .text();