通过updated_time过滤Facebook用户个人资料 [英] Filtering Facebook users Profile feeds by updated_time

查看:71
本文介绍了通过updated_time过滤Facebook用户个人资料的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

美好的一天!

我正在使用Facebook图形API来检索Facebook用户个人资料Feed(Wall)信息。
我的查询将是:
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_APPLICATION Through this, I was able to retrieve users wall information with created_time and updated_time.

我发现来自 http://developers.facebook.com/docs/reference/api/ ,我们可以使用 直到参数过滤信息。

I found from http://developers.facebook.com/docs/reference/api/, that we can filter information by created_time using since and until parameters.

有没有办法过滤用户个人资料by 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过滤update_time。

To my knowledge you can't filter by updated_time using the Graph API.

这篇关于通过updated_time过滤Facebook用户个人资料的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆