Search code examples
facebookfacebook-fql

FQL to retrieve upcoming birthdays


I am trying to retrieve the upcoming birthdays from Facebook via the FQL

Is there a way to do it?

I have tried searching it online, but couldn't get a working version of it.


Solution

  • To get access to friends birthdays you have to request friends_birthday permissions. Once that is done, you can get each friend's birthday by select name, birthday from user where uid in (SELECT uid2 FROM friend WHERE uid1 = me()) From this list you can see some people have nulls (the ones who didn't share their birthday with the authenticated user), some have just month/day and some have full month/day/year. So it'll be up to you to accurately parse these. Happy coding!!