无法阅读我的 Facebook 墙上的所有帖子
我正在阅读我的应用程序墙上的帖子,其中包含以下调用:
curl_setopt($ch, CURLOPT_URL,'https://graph.facebook.com/'.$appid.'/posts?'.$access_token);< /code>
但我只收到我自己发布的帖子。
对于其他用户,他们的帖子似乎出现在另一个列表中 (filter=3)
http://www.facebook.com/apps/application.php?id=
有办法禁用此过滤吗?
有没有办法阅读这些帖子?
I'm reading fine my application wall posts with this call:
curl_setopt($ch, CURLOPT_URL,'https://graph.facebook.com/'.$appid.'/posts?'.$access_token);
But I'm only getting the posts that I have published myself.
For other users theirs posts seem to appear in another list (filter=3)
http://www.facebook.com/apps/application.php?id=<app-id>&v=wall&filter=3
Is there a way to disable this filtering ?
Is there a way to read these posts ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在调用错误方法/连接:-)
查看
application
文档(或用户
也):您需要调用的是
feed
连接。You are calling the wrong method/connection :-)
Have a look at the
application
document (or theuser
also):What you need to call is the
feed
connection.