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
}