In v1.0 API I was able to get friends with their facebook ID like this:
{
\"name\": \"Somename SomeSurname\",
\"id\": \"100007797060798\"
}
You need to request for "user_friends" permission while creating access token for that user.
After that you can make a call to graph API:
https://graph.facebook.com/v2.0/me?fields=friends
and it will return the results in following format:
{
"friends": {
"data": [
{
"name": "Dummy1",
"id": "454####455"
},
{
"name": "Dummy2",
"id": "82####374"
},
{
"name": "Dummy3",
"id": "10###7277"
},
]
},
"id": "14###1568"
}