问题描述
美好的一天!
我正在使用 Facebook 图形 API 来检索 Facebook 用户的个人资料提要(墙)信息.我的查询将是:https://graph.facebook.com/USER_ID/feed?access_token=ACCESS_TOKEN_OF_MY_FB_APPLICATION通过这个,我能够使用 created_time 和 updated_time 检索用户墙信息.
I am using Facebook graph API to retrieve Facebook users Profile feed (Wall) information.My query will be: https://graph.facebook.com/USER_ID/feed?access_token=ACCESS_TOKEN_OF_MY_FB_APPLICATIONThrough this, I was able to retrieve users wall information with created_time and updated_time.
我从 http://developers.facebook.com/docs/reference/api/找到,我们可以使用 since 和 until 参数按 created_time 过滤信息.
I found from http://developers.facebook.com/docs/reference/api/, that we can filter information by created_time using since and until parameters.
有什么方法可以通过updated_time过滤用户个人资料信息?
Is there any way through which I can filter users Profile information by updated_time?
谢谢.
推荐答案
可以使用 FQL.
例如,修改 Facebook 开发者网站上的示例,您可以将当前用户的帖子检索到她在 2009 年 12 月 30 日美国东部标准时间凌晨 12 点之前更新的墙/提要,如下所示:
For example, modifying an example on the Facebook Developers site, you can retrieve the current user's posts to the her wall/feed updated before December 30, 2009 at 12am EST like so:
SELECT post_id, actor_id, target_id, message FROM stream WHERE source_id = me()
AND updated_time < 1262196000 LIMIT 50
据我所知,您无法使用 Graph API 来按 updated_time 进行过滤.
To my knowledge you can't filter by updated_time using the Graph API.
这篇关于按 updated_time 过滤 Facebook 用户的个人资料提要的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!