1

我正在查询 Graph API 以获取有关照片的信息。我正在使用字段扩展。查询如下所示:

https://graph.facebook.com/[userId]?fields=albums.limit(5000).fields(photos.limit(1000).fields(from,comments,likes,tags,place,name,created_time))&access_token=[accessToken]

这些查询效果很好。

有没有办法对时间范围进行此查询,即“自(日期)”和“直到(日期)”?我试图只查询 created_time 在一定范围内的照片。

我尝试了这个解决方案,但没有奏效。

非常感谢您的任何帮助。

4

1 回答 1

3

尝试使用.since(unixtime).until(unixtime)

me?fields=albums.limit(5000).fields(photos.limit(1000).fields(from,comments,likes,tags,place,name,created_time).since(unixtime).until(unixtime))

于 2013-01-21T16:56:29.953 回答