I'm struggling to make my app open the Profile Picture upload screen of the Facebook App just like the Prisma App is doing on the latest update.
Facebook Profile Picture Upload - image
I was trying to use the URLs Schemes (like the "fb://profile/", basically all of the listed schemes). I came up with these two.
"fb://nux/profile_picture?external_photo_source=%s"
"fb://profilepictureupload"
and opened these url schemes in my iOS App using:
let url = NSURL(string: "fb://nux/profile_picture?external_photo_source=\(savePath)")!
UIApplication.sharedApplication().openURL(url)
This is not documented on the Facebook Developer page, so I'm completely lost with this issue. Thank you guys! :)