我有两个Facebook帐户(朋友),并且我都登录并授权了我的应用程序。
但是,当我尝试从其中任何一个请求朋友时,我得到的都是空白清单。
这可能与我的应用仍在开发中有关吗?
授予的权限= [AnyHashable(“ user_friends”),AnyHashable(“ contact_email”),AnyHashable(“ email”),AnyHashable(“ public_profile”),AnyHashable(“ user_birthday”)]
我的代码:
FBSDKGraphRequest(graphPath: "/me/friends", parameters: nil).start(completionHandler: { (connection, user, requestError) -> Void in
let userData = user as! NSDictionary
let friends = userData["data"] as? String
if requestError != nil {
print(requestError)
return
}
print(friends) // prints nil
})
我正在使用Swift 3
最佳答案
让朋友= userData [“数据”]作为? [NSDictionary]
关于ios - 要求Facebook friend 返回空,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40064887/