在 android 中获取 public facebook 页面提要和照片

Get the public facebook Page feed and photos in android

我可以获取public页面

页面的详细信息(页面提要、页面显示图片、照片、视频、点赞数等)吗

注意:我所掌握的有关该页面的详细信息只是页面名称,我拥有访问令牌和我的个人资料

您可以使用“/{page_id}/feed”url 获取特定的页面供稿。

new GraphRequest(token, "/{page_id}/feed", params, HttpMethod.GET, this).executeAsync();

你可以从“/me/accounts”得到page_id得到所有页面page_id然后你就可以得到你想要的page_id.

new GraphRequest(token, "/me/accounts", params, HttpMethod.GET, this).executeAsync();

编辑:

首先,您可以使用“/me/likes”获得所有喜欢的页面中的 page_id 个。

new GraphRequest(token, "/me/likes", params, HttpMethod.GET, this).executeAsync();

然后您可以从响应中获取 page_id 从 page_id

中获取页面提要和照片

希望对您有所帮助!