好的,这是交易
我正在尝试根据日期范围从群组中提取帖子,因此我正在使用此
https://graph.facebook.com/<groupID>/feed/?since=1398902400&until=1398988800&access_token=<accesstoken>
since= 2014-05-01 and until= 2014-05-02
我正在使用unix时间,看起来它可以工作但是当你开始分页时
我可以看到2014-04-30的帖子超出了请求的日期范围。
有人可以帮我弄清楚为什么会这样吗?
答案 0 :(得分:0)
根据你刚才提供的内容。你使用unix代码是正确的。但是,您提供的代码有一个很小的问题,可能/可能不是导致错误的原因。
您向我们提供了:
https://graph.facebook.com/<groupID>/feed/?since=1398902400&until=1398988800&access_token=<accesstoken>
您可能只需将其更改为以下内容:
https://graph.facebook.com/<groupID>/feed?since=1398902400&until=1398988800&access_token=<accesstoken>
小问题只是语法。而不是/你只需要删除它并直接进入feed?since=
...
除此之外,我所能看到的只是错误。