I keep getting this error for my graph requests
Enter "Any?". has no subscribers
the error indicates the result .... this only happened when I converted to fast 3 ... any ????
let nextrequest: FBSDKGraphRequest = FBSDKGraphRequest(graphPath: "me/friends", parameters: ["fields": "name, id, gender"], httpMethod: "GET") nextrequest.start { (connection, result, error) -> Void in guard let listOfFriends = result["data"] as? [AnyObject] else { return } } }
source share