skip to Main Content

How to access profile picture with Facebook API in Swift 3?

Earlier I tried to access like this: let gr2 : FBSDKGraphRequest = FBSDKGraphRequest(graphPath: "me", parameters: ["fields": "id,picture.width(198).height(198)"]) gr2.start(completionHandler: { (connection, result2, error) -> Void in let data = result2 as! [String : AnyObject] let _loggedInUserSettingRecordName = data["id"] as? String //…

VIEW QUESTION
Back To Top
Search