在sharekit中获取facebook和twitter的用户id
我正在使用 iPhone 应用程序的 sharekit 实现 facebook 和 twitter。我们如何获取登录用户的用户 ID,以便我可以将其发送到服务器。任何帮助将不胜感激。谢谢。
Iam implementing facebook and twitter using sharekit for an iphone app. How can we get the user id of the logged in user so that I could send it to the server. Any help will be greatly appreciated. Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您可以使用新的 facebook 图形 API 获取 facebook 用户信息作为示例代码,您可以使用 这个。
you can get facebook user information using new facebook graph APIs for sample code you can use this.
您是否尝试过安装 Sharekit 的第 3 步?
有关完整文档,请参阅 http://www.getsharekit.com/install/ 和 http://www.getsharekit.com/docs/
Did you try Step 3 of the installation for Sharekit?
For the full documentation see http://www.getsharekit.com/install/ and http://www.getsharekit.com/docs/
我不知道文本用户名,但如果您想要 id -
请查看 ShareKit 的 SHKFacebook 类。
它有一个名为 session 的 FBSession 成员。
FBSession 有一个 FBUID,它只是 long 的 typedef - 但我假设它代表某种形式的用户 ID。
I don't know about the textual user name, but if you are after the id -
Take a look at ShareKit's SHKFacebook class.
It has an FBSession member called session.
An FBSession has a FBUID which is just a typedef for long - but I'm assuming it represents some form of user ID.
您可以通过扩展 sharetype 中的枚举来获取 ID。添加类型作为 ID 。并在可以共享功能时介绍一下身份检查的情况。
you can get the ID's by extending the enum in sharetype . add type as ID . and when you can share function introduce the case for ID checking .
如果您需要一些用户信息,用户名等,这个问题可以在 reborn ShareKit 中解决。请参阅常见问题解答。
If you need some user info, user name etc, this problem is solved in reborn ShareKit. See FAQ.