NSMutableDictionary * params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
@"select uid,name,birthday_date from user where uid in (select uid2 from friend where uid1=me())", @"query",
nil];
[[StaticFacebook getFacebook] requestWithMethodName: @"fql.query"
andParams: params
andHttpMethod: @"POST"
andDelegate: self]
;
i am using the above code to get friends info…..
but the problem is that i am getting birth_day="null"
please sugget me the solution…….
thaks in advance…..
Make sure you have requested the proper access permissions to retrieve the birthday field.
user_birthday - Provides access to the birthday with year as the birthday propertyReference: https://developers.facebook.com/docs/authentication/permissions/