Android-Facebook集成:无法导入com.facebook.Session
作者:互联网
我是android上的新手-facebook集成.我正尝试将我的应用程序与facebook集成,所以我按照facebook tutorial上的所有步骤进行操作,一切正常(至少我很想执行登录).
但是,当我尝试使用以下代码时,我意识到无法从Facebook导入该库:
Session session = Session.getActiveSession();
我正在使用Android Studio,并且IDE仅给我提供了导入android.service.textservice.SpellCheckerService的选项,但是我想正确的导入是com.facebook.Session我在这里缺少什么的任何想法? FB SDK版本为facebook-android-sdk-4.5.1
解决方法:
Facebook在新的SDK中删除会话. check my answer for same question
我给出了完整的集成代码.
您可以通过此代码检查用户是否登录.
profile = Profile.getCurrentProfile().getCurrentProfile();
if (profile != null) {
// user has logged in
} else {
// user has not logged in
}
标签:android,android-studio,facebook,facebook-android-sdk,integration 来源: https://codeday.me/bug/20191009/1879208.html