我正在尝试从包含与帖子相关的所有照片的页面中获取帖子。 我可以使用object_id从帖子中获取一张图片,但我也需要其他照片。
object_id只返回一个Id,这是第一张照片的ID。
请帮忙。
GraphRequest greq =
new GraphRequest(
AccessToken.getCurrentAccessToken(),
"/{page-id}/posts",
null,
HttpMethod.GET,
new GraphRequest.Callback() {
public void onCompleted(GraphResponse response) {
JSONArray data = null;
}
}
);
Bundle params = new Bundle();
params.putBoolean("redirect",false);
params.putString("fields", "object_id");
greq.setParameters(params);
greq.executeAsync();
答案 0 :(得分:0)
数据应位于attachments
字段中。具体在subattachments
子字段中。
您应该在Graph API资源管理器中对此进行测试,以查看API响应并根据该响应更新您的Android实现。