图形 API 签入
您好,我正在开发一个应用程序,它将与 Facebook Graph API 进行通信,以在特定位置(只有一个)签入用户。
1)我让用户登录,并请求授权发布/登录位置 2) 我从 facebook 获取令牌,从而获得凭据
如何签入用户?在某个地点?
Hi I am developing an application that will communicate with Facebook Graph API to check in user at a particular location (only one).
1) I let the user sign in, and ask for authorization to publish/sign into locations
2) I get the token from facebook and thus acquire the credentials
How do I check in a user? at a location ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要拥有该用户的
publish_checkins
授权。如果你明白了,你可以简单地向http://graph.facebook.com/PROFILE_ID/checkins
发帖,它需要几个参数。请查看此页面的发布部分。希望这会对您有所帮助。
You need to have
publish_checkins
authorization for the user. If you get that you can simply do a post tohttp://graph.facebook.com/PROFILE_ID/checkins
which take several parameters. Please check publishing section of this page.Hope this will help you.
您可以在 Facebook JavaScript SDK 中实现同样的目标。您需要 FB.login 中的“publish_checkins”扩展权限
You can achieve same thing in the Facebook JavaScript SDK. You need "publish_checkins" Extended permission in FB.login