I'm trying to login in twitter using Fabric sdk. I need to get the user image profile, email and name but all I can get is username with the following method:
Twitter.sharedInstance().logInWithCompletion { (session: TWTRSession?, error: NSError?) in
self.name = session?.userName
}
According to this link you need to request Twitter to put your app into its whitelist. https://docs.fabric.io/apple/twitter/log-in-with-twitter.html
Is it necessary? Anyone has another solution? Thanks!