简体   繁体   English

使用FQL的数据不一致-表流

[英]inconsistency of data using FQL - Table stream

I'm using FQL to get the post recently modified to exactly 10 minutes ago, the FQL used is as follows: 我正在使用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)]

Executing this FQL from Guatemala server returns all posts correctly, running the query from a server Nicaragua many posts are excluded. 从危地马拉服务器执行此FQL会正确返回所有帖子,从服务器尼加拉瓜运行查询会排除许多帖子。

What could be happening? 可能会发生什么?

The facebook's server GMT is 00:00. Facebook的服务器GMT为00:00。 Try to adjust the time. 尝试调整时间。

My GMT is -3, I had to query strtotime("-3 hours") when I got this same problem. 我的GMT是-3,当我遇到同样的问题时,我不得不查询strtotime(“-3 hours”)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM