Home > OS >  For your account security, logging into Facebook from an embedded browser is disabled. Download and
For your account security, logging into Facebook from an embedded browser is disabled. Download and

Time:08-04

The Facebook login feature suddenly stopped working on my Android app. I am getting this error message:

For your account security, logging into Facebook from an embedded browser is disabled. To continue, download and log into the Facebook app on your device and try again.

enter image description here

In my build.gradle, this is what I have for Facebook:

implementation 'com.facebook.android:facebook-android-sdk:3.23.1'

Is the Facebook SDK version the issue? From what I read in the message, users now have to install the Facebook app on the device and not login from a web browser on the phone.

CodePudding user response:

It's expected behaviour - it was deprecated last year according to this article. You should migrate your app to CustomTabs.

Beginning October 5, 2021, Facebook Login will no longer support using Android embedded browsers (WebViews) for logging in users.

  • Related