-1

在我的 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

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

可能吗 ?

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

4

1 回答 1

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

或者

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

或 fql

SELECT text FROM comment where object_id=803696294074
于 2013-04-30T13:06:07.027 回答