-1

所以我到处搜索,但除了会被限制或删除的过时 FQL(不太确定)之外,我找不到任何东西。所以我正在构建一个应用程序,我想让它发布在假设所有朋友的墙上,但我不想使用 for 循环,因为这会像疯狗一样吃掉主机的 CPU。我的问题是你能建议一个方法吗?

我目前得到的:

  • 长寿代币
  • jQuery + PHP 登录
4

2 回答 2

1

让我们在这里澄清几件事:

  1. Facebook 查询语言 (FQL)没有过时,据我所知,没有计划弃用它!
  2. 2013年2 月删除发帖到朋友墙
  3. Facebook 始终建议使用用户发起的共享模型,而不是自动化该过程。
于 2013-01-20T19:10:02.173 回答
0

read about the Batch Requests concept here: https://developers.facebook.com/docs/reference/api/batch/

this will enable you to make multiple graph API calls at once

but, this is extremely not recommended to make 1000 calls with it, and it probably won't work at all because you will easily reach facebook's call timeout. FQL will be a better method in this case because you can do it in one query (with start and limits)

于 2013-01-20T13:24:19.690 回答