App keeps getting rejected for user_friends - Facebook

365 Views Asked by At

Basically Facebook keeps rejecting our app for our request to utilise user_friends but won't give us any reasoning as to why, which is super helpful.

I'm not the most technically gifted in the world so please speak slowly and point! The info I have is below. Any advice is appreciated.

Thanks

I’m using my admin account and when I try to login with ‘user_friends’ permissions error appears.

Here is my code:

guard let viewController = view as? UIViewController else { return }
  let fbLoginManager = FBSDKLoginManager()
  fbLoginManager.logOut()
  fbLoginManager.loginBehavior = FBSDKLoginBehavior.native
  view?.setupStatusBar(style: .default)
  fbLoginManager.logIn(withReadPermissions: [“user_friends”], from: 
viewController) { (result, error) in

  }

Here is the error message

1

There are 1 best solutions below

2
AnthoPak On

You are getting this error because your app isn't approved yet.

There is a really bad UX regarding the new Facebook app review, but you'll find informations regarding your review in your inbox on the developer app page. You will probably have to do the business verification if you haven't already.

enter image description here