gpt4 book ai didi

安卓 Facebook SDK : Check if the user is logged in or not

转载 作者:IT老高 更新时间:2023-10-28 21:38:49 26 4
gpt4 key购买 nike

我的 Android 应用有一项功能,用户可以授权该应用并分享链接。

我还需要为用户提供退出 facebook 的选项,如果用户未登录(或未授权应用),我需要有条件地禁用此按钮。

我似乎在 Android SDK 上找不到 API 调用这会让我问 FB 用户是否登录。

我找到的是getAccessExpires() :

Retrieve the current session's expiration time (in milliseconds since Unix epoch), or 0 if the session doesn't expire or doesn't exist.

检查 session 是否等于 0 是否可行?还是我缺少什么?

最佳答案

Facebook SDK 4.x 版本现在有不同的方法:

boolean loggedIn = AccessToken.getCurrentAccessToken() != null;

使用函数

boolean loggedIn;
//...
loggedIn = isFacebookLoggedIn();
//...
public boolean isFacebookLoggedIn(){
return AccessToken.getCurrentAccessToken() != null;
}

查看此链接以获得更好的引用 https://developers.facebook.com/docs/facebook-login/android检查此标题“访问 token 和配置文件”它说“您可以通过检查 AccessToken.getCurrentAccessToken() 和 Profile.getCurrentProfile() 来查看一个人是否已经登录

关于安卓 Facebook SDK : Check if the user is logged in or not,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12402775/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com