wiwek chauhan
wiwek chauhan

Reputation: 667

app not active: This app is not currently accessible and the app developer is aware of the issue

I got this error on the Facebook page.

App not active: This app is not currently accessible and the app developer is aware of the issue. you will be able to log in when the app is reactivated.

Also, I was implement facebook login in the Laravel with "Laravel Socialite".

enter image description here

Upvotes: 46

Views: 181374

Answers (6)

3kdeveloper
3kdeveloper

Reputation: 822

I resolved this issue (App Not Active) by removing my other Facebook account and logging in as the Facebook account used in the Facebook developer console.

Upvotes: 2

In the development mode you should add the user in App roles -> Roles. When adding users make sure they have active FB development account. Otherwise facebook just closes the window without any error message.

enter image description here

Upvotes: 0

Hog Rider
Hog Rider

Reputation: 651

2023/8/9 latest solution

You don't need to set your app to 'active' if you're only testing the login functionality. The issue you're facing likely arises because you're using a Facebook account that isn't whitelisted as a test account.

  1. The easiest solution : The login account must be the same as your developer account, not any other Facebook account

  2. add another account to your whitelist: Go to your app on the Meta developer console, under 'App Roles'-> 'Roles', add a new Facebook account

Upvotes: 2

Omar
Omar

Reputation: 676

It's happened because your app on Facebook for developers website is not active

solution

  1. go to Facebook for developers from here
  2. choose My Apps from the top bar
  3. click on your app icon ( then you will notice that your app is not active from the top bar )
  4. from the left side select settings >> basic
  5. put your privacy policy link in the Privacy Policy URL and in the User data deletion field, you can make a copy from this privacy policy ( to make a copy from the privacy policy select file from the top bar and select make a copy )
  6. press save changes

I hope that it was helpful

Upvotes: 25

M.N.
M.N.

Reputation: 108

Go to developers.facebook.com/apps/your-app-id/app-review/permissions

Change public_profile to Advanced Access.

Thats all.

Upvotes: 1

nyedidikeke
nyedidikeke

Reputation: 7618

The error suggests your Facebook app is not active; it should definitely be in Development Mode.

You get that error because the Facebook user account you are using to test the login with Facebook feature is neither added to your Facebook app as an Administrative nor Developer account.

You should check and ensure the Facebook user account meets either condition above.

Alternatively, you can change you App Mode from Deployment to Live, if you are ready to make it accessible to your users.

Upvotes: 13

Related Questions