我正在尝试使用下面给出的代码在我的 android 应用程序中检索 facebook 的最新帖子。但它只给了我我的分享和评论。我想获得这些以及我在我的状态上发布的消息,但它总是为空。
Bundle params = new Bundle();
params.putString("format", "json");
params.putString("access_token",sp.getString("access_token",null));
String url = "https://graph.facebook.com/me/feed";
String response = Util.openUrl(url, "GET", params);
JSONObject json = Util.parseJson(response);
JSONArray jsonArray = json.optJSONArray("data");
if(jsonArray != null) {
i=0;
String tempName = jsonArray.getJSONObject(i).getString("from");
String tempId = jsonArray.getJSONObject(i).getString("id");
String story = jsonArray.getJSONObject(i).getString("story");
String msg = jsonArray.getJSONObject(i).getString("message");
}
在这里,如果我在我的状态上发布一些文本,那么“msg”也为空。
请提供您的建议。谢谢。