If I am using the following to get my friends birthdays:
$facebook->api('/me/friends/?fields=id,first_name,last_name,birthday,picture');
is it possible to sort the result by descending birthdays? (soonest is first)
thanks!
|
If I am using the following to get my friends birthdays:
is it possible to sort the result by descending birthdays? (soonest is first) thanks! |
|||
|
|
|
You can accomplish that by using an FQL request:
Keep in mind that not everyone provides a birthday and birthday_date values can be null. |
|||
|
|