确定facebook朋友何时分享特定类型的帖子?

时间:2013-04-30 12:55:27

标签: android facebook facebook-graph-api facebook-opengraph facebook-fql

在我的Android应用程序中,我想知道特定朋友分享特定类型的帖子时视频的时间或(限制偏移量来获取流)。例如,我想知道id为522601313的用户上次共享视频时的时间或(限制流的偏移量)。我稍后会在我的FQL查询中使用它,就像在

中一样
SELECT post_id, source_id, actor_id, target_id, message,
attachment, permalink, type , 
created_time,timeline_visibility,updated_time 
FROM stream WHERE source_id =522601313 and type=80 
limit = XXXX offset = XXXX

在上面的查询中,我想知道限制和偏移

有可能吗?

如果是,请提出一些解决方案,我该如何完成?

1 个答案:

答案 0 :(得分:0)

限制1只能检索最新的视频上传,并获得创建的时间。

SELECT created_time, description, embed_html, format,length,link, owner, src, src_hq, thumbnail_link, title, updated_time, vid FROM video WHERE owner = 'USER_ID' LIMIT 1

参考:https://developers.facebook.com/docs/reference/fql/video/

使用vid(比方说803696294074),你可以做更多,

,例如https://graph.facebook.com/803696294074?access_token=USER_ACCESS_TOKEN

OR

https://graph.facebook.com/803696294074/comments?access_token=USER_ACCESS_TOKEN

OR fql

SELECT text FROM comment where object_id=803696294074