如何删除所有 Facebook Graph API 应用程序请求?
$request_url ="https://graph.facebook.com/".$uid."/apprequests?".$access_token;
$requests = file_get_contents($request_url);
这会获取用户的所有请求。但如何一次性删除所有内容呢? Facebook只有一个将它们一一删除的例子。
谢谢!
$request_url ="https://graph.facebook.com/".$uid."/apprequests?".$access_token;
$requests = file_get_contents($request_url);
This gets all the requests for a user. But how do I delete all of them at once? Facebook only has an example for deleting them one by one.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您无法在单个操作中删除多个项目(就像使用 SQL 一样)。您需要进行一定程度的迭代来为每个请求指定唯一的 URL。您可以做的是将操作批量化为对 Graph API 的单个请求。
更多信息请FB 此处。
You can't delete multiple items in a single operation (like you can with, say, SQL). You will need to iterate to some degree to specify the unique URL for each request. What you can do is batch up your operations into a single request to Graph API.
More info here at FB.
我知道这个问题已经很老了,但我发现它在谷歌上搜索,所以我想现在任何人都需要答案。
对我来说最好的方法是通过一次 api 调用将所有请求 ID 发送到 Facebook。
您的请求 ID 必须采用 requestid_userid 格式,例如 12345_67890,假设您在数组 ($array_of_request_ids) 中拥有所有 ID,则代码 (PHP) 将如下所示:
这应该删除所有请求。
I know this question is old, but I found it searching on Google so I thought anyone could need an answer now.
The best method for me, is to send all the request ids to Facebook on a single api call.
Your request ids must be on the format requestid_userid, like 12345_67890, supposing you have all the IDs inside an array ($array_of_request_ids), the code (PHP) would be like this:
That should delete all the requests.