美好的一天!
我使用Facebook图形API来检索Facebook用户个人资料Feed(Wall)信息。 我的查询将是: https://graph.facebook.com/USER_ID/feed?access_token=ACCESS_TOKEN_OF_MY_FB_APPLICATION 通过这个,我能够使用created_time和updated_time检索用户墙信息。
我从http://developers.facebook.com/docs/reference/api/发现,我们可以使用自和直到参数,按created_time过滤信息。
我有什么方法可以通过updated_time过滤用户个人资料信息?
谢谢。
答案 0 :(得分:2)
可以使用FQL。
例如,在Facebook开发者网站上修改an example ,您可以检索当前用户的帖子到2009年12月30日美国东部时间上午12点之前更新的墙/ Feed:
SELECT post_id, actor_id, target_id, message FROM stream WHERE source_id = me()
AND updated_time < 1262196000 LIMIT 50
据我所知,您无法使用Graph API按updated_time过滤。