在后台验证 facebook oauth 令牌
我正在我的应用程序的后台线程中访问 Facebook。我最初从我的活动中登录用户并存储了 oauth 令牌。即使离线访问,oauth 令牌也可能已过期。如何使用 Facebook Android SDK 检查有效的 oauth 令牌?
当我创建新的 Facebook 对象时,未设置 oauth 字段。我可以从存储的令牌中设置它,但我没有存储会话到期时间。因此,查看源码,isSessionValid()
和request()
都会失败。我无法使用弹出登录对话框从后台线程对用户进行授权()。
这是否意味着我无法通过 SDK 检查有效令牌?
I'm accessing Facebook in a background thread from my app. I initally logged in the user from my activity and stored the oauth token. It is possible that the oauth token has expired in the meantime, even with offline access. How could I check for valid oauth token with the Facebook Android SDK?
When I create a new Facebook object the oauth field is not set. I could set it from my stored token, but I didn't store the session expiry time. Therefore, looking at the source code, both isSessionValid()
and request()
will fail. I cannot authorize()
the user from the background thread with a popup log-in dialog.
Does that mean that I cannot check for valid token via the SDK?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以调用图形 api,例如 /me/permissions 并检查 oauth 异常和/或您是否仍然拥有所需的权限。
You could make a call to the graph api, for example to /me/permissions and check for an oauth exception and/or that you still have the permissions you need.