Next birthdays with fql - fbook
问题 Using Facebook graph API I have the following which shows this months birthdays of a users friends SELECT uid, name,pic_square, birthday_date FROM user WHERE (substr(birthday_date, 0, 2) = "04") AND uid IN (SELECT uid2 FROM friend WHERE uid1 = me()) order by name What I actually want to show is the next 10 birthdays, so it crosses months probably as month is close to end, but, facebook does like the NOW in queries so I'm a little lost how I would achieve this? 回答1: I figured it out - here's