将 FB connect 与 Foursquare 集成到 iPhone 应用程序中
有谁知道,是否/如何可以在自己的 iPhone 应用程序中将您的 FB 帐户链接到您的 Foursquare 帐户?这是许多站点为其 Web 服务实现的功能。
Does anyone know, whether/how it is possible to link your FB account to your Foursquare account within an own IPhone App? This is the functionality implemented by a lot of sites for their Web services.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我唯一能想到的就是提出你自己的实现。基本上有你自己的用户表,当用户与 facebook 连接时,你将他的 FBId 存储在你的用户表中。稍后,如果他想连接他的 Foursquare 帐户,您只需将他的 FS id 也存储在用户表中即可。为了获得更大的灵活性,您将拥有一个用户和一个用户网络表。用户网络可以包含链接的社交网络。
这是我能想到的最简单的解决方案。
The only thing I can think of is to come up with your own implementation. Basically have your own users table, when the user does a connect with facebook, you store his FBId in your users table. Later if he wants to connect his Foursquare account, you simply store his FS id also in the users table. For more flexibility you would have a users and a usernetworks table. Usernetworks could have the linked social networks in it.
This is the simplest solution I can think of.