我在访问网址时遇到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"));
}
答案 0 :(得分:1)
您使用的请求网址无效。在您的请求网址中,将page_id
更改为您尝试为其申请数据的实际Facebook网页ID,并包含您正在使用的API版本。
E.g。如果我想访问ID为3454546的页面 -
https://graph.facebook.com/v2.9/3454546?access_token=xxxxx&fields=name,likes,posts