0

我在访问 URL 时收到 java.net.unknownhostexception,但我可以通过浏览器访问。

      public static void main(String[] args) throws IOException, JSONException`enter code here`
{
JSONObject json = readJsonFromUrl("https://graph.facebook.com/page_id/?
access_token=xxxxx&fields=name,likes,posts");
System.out.println(json.toString());
System.out.println(json.get("likes"));
}
4

1 回答 1

1

您使用的请求 URL 无效。在您的请求 URL 中,更改page_id为您尝试为其请求数据的实际 Facebook 页面 ID,并包含您正在使用的 API 版本。

例如,如果我想访问 id 为 3454546 的页面 -

https://graph.facebook.com/v2.9/3454546?access_token=xxxxx&fields=name,likes,posts

于 2017-05-02T13:38:30.480 回答