通过 Facebook IOS SDK 发布签到
我正在尝试在用户墙上发布签到信息。我不需要获取用户设备的经度和纬度。而是拥有这个静态以及用户签入的地方。基本上是一个已经有静态坐标和消息的“签入”按钮。
我启动并运行了演示应用程序,但似乎找不到有关此特定主题的任何分步教程。您可以向我指出任何链接或示例项目吗?
谢谢!
I'm trying to publish a check-in on a users wall. I don't need to get the longitude and latitude of the users device. But rather have this static as well as the place the user will check-in too. Basically a "check-in" button that already has static coordinates and a message.
I got the demo app up and running but can't seem to find any step by step tutorials on this particular topic. Is there any link around or a sample project you can point me to?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,您需要有一个地点 ID。假设您可以使用 Facebook Graph API 来发布 Feed 帖子签入用户。
您可以执行以下操作(使用 Facebook iOS SDK 3.0):
或者:
您需要询问在进行此调用之前,用户需要获得publish_stream权限。
First, you need to have a place id. Assuming you have that you can use the Facebook Graph API to make a feed post to check-in the user.
You can do something like this (using Facebook iOS SDK 3.0):
Or:
You will need to ask the user for publish_stream permission before making this call.