如何检查给定的用户 ID 是否已验证我的应用程序?
我正在使用 Facebook Graph API,想要检查用户是否已通过用户 ID 验证了我的 Facebook 应用程序。我该怎么做?
I'm using the Facebook Graph API and want to check if a user has authenticated my Facebook app by user ID. How do I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您使用:
这应该返回:
如果用户已登录到您的应用程序。
You use:
This should return:
If the user has logged in to your application.
扩展 ifaour 的答案,在 PHP 中,这个查询看起来像这样:
Expanding on ifaour's answer, in PHP this query would look something like this:
在这里,您可以将多个请求一起批处理,并避免使用 FQL。
假设您已经登录 facebook 并将访问令牌设置为应用程序访问令牌,您可以执行以下操作:
然后您可以使用以下命令处理批处理响应像这样的代码:
Here you can batch multiple requests together and avoid using FQL.
Assuming you have already logged into facebook and set the access token to the application access token, you can do this:
Then you can process the batch response with code like this: