Not getting date of birth from Facebook sdk 3.2 in iOS
facebook, ios
Solution
After version 3.13 if you are asking permission other than public_profile, email, and user_friends then you have to submit your app for review else you will not get it, thats why you are not able to get user_birthday. As written here
Developers asking for more than public_profile, email, and user_friends will need to submit their apps for review by Facebook to approve the permissions the app will request. See the Permissions Guide for details. Existing apps have one year before they are required to go through review, including updates to existing apps. Apps created after April 30th, 2014 must go through review.
Problem
I have used Facebook sdk 3.2 in my app, i want to fetch all detail of my my profile, but it does not give to me birthday. I have used the code: ``` [FBRequestConnection startForMeWithCompletionHandler:^(FBRequestConnection *connection, id<FBGraphUser> user, NSError *error) { if (!error) { } }]; ``` Can anyone explain where am i wrong here? Any help would be appreciated. Thnaks in advance.