我正在使用此请求获取公共脸谱页面的所有Feed。
GraphRequestAsyncTask graphRequestAsyncTask = new GraphRequest(
AccessToken.getCurrentAccessToken(),
"//" + pageId + "/posts/",
null,
HttpMethod.GET,
new GraphRequest.Callback() {
public void onCompleted(GraphResponse response) {
JSONObject jsonObject = response.getJSONObject();
if (jsonObject == null) {
return;
}
}
}
).executeAsync();
并且响应包含图片标记,其中包含表示唯一一个图像的网址,但是如何获取该Feed中包含的所有图片。是否有任何标记(字段)来获取所有图像