基本信息,例如名字等 - 被标记为不需要访问令牌,但 PHP SDK 仍然无法获取它
这个问题听起来可能很奇怪,但我是第一次这样做,找不到答案。那么,为什么如果某些字段被标记为需要无访问令牌,当我仍然得到“必须使用活动访问令牌来查询有关当前用户的信息。”
异常通过我的应用程序中的 PHP SDK 询问它们?
This question may sound weird, but it's first time I do it and cannot find the answer to this. So why if some fields are marked as requiring no access token, I still get "An active access token must be used to query information about the current user."
exception when I ask for them through PHP SDK from my App?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果当前用户尚未批准您的应用,您就无法知道他们是谁。因此,如果没有 access_token,您可以调用
graph.facebook.com/4
并获取扎克伯格的信息,但您无法调用graph.facebook.com/me
,因为这就是获得用户许可的全部意义。You can't know who the current user is if they haven't approved your app. So without an access_token you can call for example
graph.facebook.com/4
and get Zuckerberg's info, but you can't get callgraph.facebook.com/me
, because that's the whole point of getting permissions from users.