Facebook 图表 API - 来自 /posts 的页面帖子丢失的月份
Facebook Graph API - Months of Missing Page Posts from /posts
我四处寻找答案,想知道为什么会发生这种情况,但运气不佳。
从页面 /posts
提取和分页结果时,post 个月的结果丢失了。我检查过的东西:
- 访问该页面的用户 post 已被排除。显示的 Post 和缺失的 post 可能来自同一用户
- Post 类型似乎无关紧要。 Post 显示的和丢失的可以是相同的 post 类型
- 我可以通过我的应用程序查看丢失的 posts - 通过查询任何丢失的 posts,我的应用程序可以访问post 数据、见解等
- 缺失的 post 已 发布,public
仅当从 Facebook 网站页面管理部分的 "Export Data" 选项导出时,才能看到缺少的 post。
我的查询:
$fb->get('/{PAGEID}/posts?fields=name,created_time,message,parent_id&since={SINCE}&until={UNTIL}&limit=100', '{ACCESS_TOKEN}');
对这些结果进行分页,例如,在查询 2017-10-01
和 2017-11-01
之间的结果时,从 10 月 27 日开始的 ~30 post 中有 2 个 returns(以及不是那天的第一个或最后一个 posts),10 月 27 日之后的日期显示大部分 posts(只有少数缺失),而 10 月 27 日之前的日期根本不显示。
使用图表 API 2.10
.
关于为什么这么多 post 丢失的想法?
这是一个known bug in the Facebook API. I have the same issue. A staff member commented,
I've been informed by the product team that they will not be fixing the existing endpoint since it is working by design, as in it accurately represents what is visible of the pages feed to a user on the UI.
They are working on a new endpoint which will fetch all posts published by the page not subject to the limitations of feed. This is something we will be testing internally very soon.
错误是在 9 月 22 日报告的,评论是在 10 月 26 日发布的。另一名工作人员 commented 在 11 月 14 日重复了该错误,
Unfortunately, we do not have an ETA on when the new endpoint will be ready. As a result, the bug was labeled closed to manage developer expectation that the fix won't be ready short-term.
我四处寻找答案,想知道为什么会发生这种情况,但运气不佳。
从页面 /posts
提取和分页结果时,post 个月的结果丢失了。我检查过的东西:
- 访问该页面的用户 post 已被排除。显示的 Post 和缺失的 post 可能来自同一用户
- Post 类型似乎无关紧要。 Post 显示的和丢失的可以是相同的 post 类型
- 我可以通过我的应用程序查看丢失的 posts - 通过查询任何丢失的 posts,我的应用程序可以访问post 数据、见解等
- 缺失的 post 已 发布,public
仅当从 Facebook 网站页面管理部分的 "Export Data" 选项导出时,才能看到缺少的 post。
我的查询:
$fb->get('/{PAGEID}/posts?fields=name,created_time,message,parent_id&since={SINCE}&until={UNTIL}&limit=100', '{ACCESS_TOKEN}');
对这些结果进行分页,例如,在查询 2017-10-01
和 2017-11-01
之间的结果时,从 10 月 27 日开始的 ~30 post 中有 2 个 returns(以及不是那天的第一个或最后一个 posts),10 月 27 日之后的日期显示大部分 posts(只有少数缺失),而 10 月 27 日之前的日期根本不显示。
使用图表 API 2.10
.
关于为什么这么多 post 丢失的想法?
这是一个known bug in the Facebook API. I have the same issue. A staff member commented,
I've been informed by the product team that they will not be fixing the existing endpoint since it is working by design, as in it accurately represents what is visible of the pages feed to a user on the UI.
They are working on a new endpoint which will fetch all posts published by the page not subject to the limitations of feed. This is something we will be testing internally very soon.
错误是在 9 月 22 日报告的,评论是在 10 月 26 日发布的。另一名工作人员 commented 在 11 月 14 日重复了该错误,
Unfortunately, we do not have an ETA on when the new endpoint will be ready. As a result, the bug was labeled closed to manage developer expectation that the fix won't be ready short-term.