Facebook以分页限制获得状态

时间:2012-10-07 19:54:39

标签: android facebook api

我正在开发一个iphone / android应用程序,需要将客户端每日fb状态消息显示到应用程序中。这种情况发生在身份验证中,并且工作正常(与PHP FB SDK API连接),现在我需要显示来自该用户墙的所有状态消息(现在它默认只提供20个雕像)。

我能够看到上一页/下一页的URL链接

[previous] => https://graph.facebook.com/user_id/statuses?date_format=U&limit=25&since=1328969556&__paging_token=10150777962697519&__previous=1

[next] => https://graph.facebook.com/user_id/statuses?date_format=U&limit=25&until=1264999321&__paging_token=327111876040

但不确定如何调用此方法来获取下一组状态消息列表。

当我直接调用URL时,它以json格式提供了此错误消息

  

请求此资源需要访问令牌。

所以我将访问令牌(由FB返回)添加到此URL,如

https://graph.facebook.com/user_id/statuses?date_format=U&limit=25&until=1264999321&__paging_token=327111876040&access_token=returned_access_token_string

它返回空数据json,但该用户的墙上有超过1000个雕像。如何通过限制访问fb状态。

0 个答案:

没有答案