skip to Main Content

Need help with Facebook Login. When I try to log in and get an acess_token to work with the Facebook API, I get the error "It looks like this app isn’t available" (http://joxi.ru/E2pZND3Hj8XnPr). And I can’t find a clear answer why this error occurs.
The permissions I’m requesting from Facebook are: pages_read_engagement, pages_show_list

From different answers (including the one on Stackoverflow), I tried the following solutions:

  1. "App ID" and "App Secret" are exactly correct (since everything works as it should from a developer account).
  2. The app is in "Live" mode
  3. email and public_profile permissions are set to advanced access
  4. "App Domain" and "OAuth Redirect URIs" are configured correctly.
  5. "Privacy Policy URL" and "Terms of Service URL"

2

Answers


  1. In my case, I got this error because I was using configId instead of config_id on Facebook Login for Business.

    FB.login(
      function(response) {
        console.log(response);
      },
      {
        config_id: '<CONFIG_ID>' // right
        // configId: '<CONFIG_ID>' // wrong
      }
    );
    
    Login or Signup to reply.
  2. maybe you need to overtake Access Verification by following the guidelines presented in the relevant documentation,

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