Sorting results from Facebook Graph API
I am trying to retrieve a list of Facebook friends, and I would like them to be in alphabetical order. The Facebook Graph API returns an array like so:
{
"data": [
{
"id": "12345",
"name": "Jane Doe"
},
{
"id": "56789",
"name": "Elizabeth Doe"
}
]
}
This is in no apparent order. Any suggestions for how I can sort this?