使用 Facebook 的 API 检索用户的所有订阅者

发布于 2024-12-22 13:35:23 字数 129 浏览 1 评论 0原文

facebook 的 API 上似乎没有提到这一点。 我发现您可以使用 /[user]/subscribers 通过图形 API 获取用户订阅者列表,但这不会返回完整列表。 我尝试过使用 offset 参数,但这不起作用。

谢谢

There doesn't seem to be any mention of this on facebook's API.
I found you can get a list of a user's subscribers with the graph API using /[user]/subscribers however this isn't returning the full list.
I've tried using the offset parameter but that's not working.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

花间憩 2024-12-29 13:35:23

https://developers.facebook.com/tools/explorer/ ?method=GET&path=4%2Fsubscribers

我似乎得到了一个很大的列表。在请求的底部,您可以看到分页选项。

  "paging": {
    "next": "https://graph.facebook.com/4/subscribers?format=json&limit=5000&offset=5000&__after_id=100003274909405"
  }

但是,该链接不起作用。我用 ?limit=X https://graph.facebook 得到零星结果.com/4/subscribers?format=json&limit=5 有时会返回 1、2、3、4 或 5 个结果,即使有很多结果......

所以我称其为漏洞。您应该向 Facebook 举报。

https://developers.facebook.com/tools/explorer/?method=GET&path=4%2Fsubscribers

I seem to get a big list. At the bottom of the request, you can see paging options.

  "paging": {
    "next": "https://graph.facebook.com/4/subscribers?format=json&limit=5000&offset=5000&__after_id=100003274909405"
  }

However, that link doesn't work. And I get sporadic results with ?limit=X https://graph.facebook.com/4/subscribers?format=json&limit=5 Sometimes will return 1, 2, 3, 4, or 5 results, even though there are tonnes of them...

So I'd call it a bug. You should report it to Facebook.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文