0

我正在使用FQL来获取最近修改为 10 分钟前的帖子,使用的 FQL 如下:

SELECT post_id, message, created_time, likes.count, likes.user_likes, comments.count, actor_id 
FROM stream 
WHERE source_id=[My FanPage ID] and updated_time > [UNIXTIME (sysdate - 10min)]

从危地马拉服务器执行此 FQL 会正确返回所有帖子,从尼加拉瓜服务器运行查询会排除许多帖子。

会发生什么?

4

1 回答 1

0

The facebook's server GMT is 00:00. Try to adjust the time.

My GMT is -3, I had to query strtotime("-3 hours") when I got this same problem.

于 2013-05-24T21:32:20.083 回答