Android Facebook SDK 4.0 Login without Facebook App

前端 未结 4 1984
面向向阳花
面向向阳花 2020-12-18 21:32

I\'m having issues with the webview login for Facebook on Android.

I\'ve followed the tutorials and login works perfectly when the user has the Facebook app install

4条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-18 22:12

    I think you forgot to use callbackManager for proper workflow. Used CallbackManager for registration callback must be called in onActivityResult of host activity. Activity should not be in singleInstance launchMode because it will not be able to launch startActivityForResult(facebook internally launches FacebookActivity using this method). So add to your activity:

    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data)
    {
        super.onActivityResult(requestCode, resultCode, data);
        callbackManager.onActivityResult(requestCode, resultCode, data);
    }
    

提交回复
热议问题