skip to Main Content

Currently facing this is issue while adding facebook login to app in react native

i am using

[email protected]

Facebook Login Error

8

Answers


  1. I used to have an error like this with IOS. My solution is check config key FacebookSDK in file Info.plist ios/name_project/Info.plist. Make sure that is correct with tutorial step 2 of FB: https://developers.facebook.com/docs/ios/getting-started/

    Login or Signup to reply.
    1. You need to log in with the same account on your phone as well as the developer account when you’re in development mode.

    2. Make sure you’ve entered a privacy policy URL.

    3. If your development mode is disabled for some reason, it would probably be the cause of your privacy policy URL OR It will fix after you publish your app on Play Store.

    Login or Signup to reply.
  2. If your mode is set to development,

    1. try login with test users from the facebook developer account

    2. Inside your device logout with any other fb account if it is there.

    3. Follow the quickstart guide in facebook sdk properly.

    Then it will ask for facebook login

    Login or Signup to reply.
  3. i just fount the solution of that probem, you need to login with the same facbook account which you login in the facebook developer account
    [email protected] this person help

    Login or Signup to reply.
  4. Brother just turn on your app status(live) from your facebook developer account After filling all your information.

    And Also use latest dependency. I’ve added below dependency in my project and it’s working.

    implementation ‘com.facebook.android:facebook-android-sdk:[8,9)’

    Login or Signup to reply.
  5. that’s probably not the suggestion you are expecting. But do yourself and your users a favor and remove facebook from your apps. Facebook is disrespecting developers and without any notice keep changing things, not respecting user rights; injecting scripts etc. Especially on IOS, you will have many issues with apple. I have just came to this post because I recognized myself that facebook login isnt working because my app was turned into Development mode, i dont know why and never got any notice from Facebook. This is not the first time Facebook does something like that. I had already in my mind to remove facebook for user rights and finally this triggered. All you need is a username-password login, if you want google login, it is ok at least for developers aspect. they inform you with the changes in advance.
    Dont make your app depends on facebook, you will surely regret. There are many posts about if you google.

    Login or Signup to reply.
  6. I just found the solution,
    For me turning the app into development mode was the solution.

    Just keep in mind these following things and you will not run into this problem.

    1. Create app in business category.

    2. Add a privacy policy.

    3. Switch to live mode from development.

    Thank you hope it helps.

    Login or Signup to reply.
  7. I also faced the same issue. After changing the App Mode to Live, it’s working perfectly.

    Here’s how you can change the App Mode to Live:

    enter image description here

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search