Skip to content

Instantly share code, notes, and snippets.

@shrawan2015
Last active July 5, 2018 15:07
Show Gist options
  • Save shrawan2015/346d3e461a3b1110fbbfddeb185c5bd1 to your computer and use it in GitHub Desktop.
Save shrawan2015/346d3e461a3b1110fbbfddeb185c5bd1 to your computer and use it in GitHub Desktop.
func getFBProfilePicUrl(){
let request = FBSDKGraphRequest(graphPath: "me", parameters: ["fields": "id, name, first_name, last_name, email, picture.type(large)"])
let _ = request?.start(completionHandler: { (connection, result, error) in
guard let userInfo = result as? [String: Any] else { return }
if let id = userInfo["id"] as? String {
appScopedUserId = id
}
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment