iOS FBConnect access_token 和恢复
我在我的 iOS 应用程序中使用 FBConnect,以及最新版本的 FBConnect-iOS。
github 文档声称 fbconnect 会话没有可用的“恢复”功能,因为开发人员不负责存储 access_token
信息。 链接在这里
这一切都很好,我可以抓住access_token 字符串使用 [_facebook access_token];
但是,我不知道如何使用此令牌恢复会话,因此用户不必每次打开应用程序时都登录。
有谁知道如何使用 access_token
键恢复会话?
非常感谢! 布雷特
I am using FBConnect in my iOS app, with the latest version of FBConnect-iOS.
The github docs claim that no "resume" function is available for fbconnect sessions because the developer is not responsible for storing the access_token
information. Link Here
This is all well and good, and I can grab the access_token string using [_facebook access_token];
however, I can't figure out how to resume a session using this token so the user doesn't have to login every time the app is opened.
Does anyone know how to resume a session using the access_token
key?
Many thanks!
Brett
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需调用 [_facebook isSessionValid] 函数即可检查会话。
Just call [_facebook isSessionValid] the function to check the session.