I'm trying to get the names and the url link to multiple Facebook ID's profiles whom I'm a friend of.
When trying to get one ID's info it's easy: $response = $facebook->api("/123456789");
I'd like to get the names from multiple IDs in the same request. Is this possible with FQL, and if so, how?
You don't have to use FQL. You can easily query the Graph API with multiple ID separated by comma.
So it will look something like this in php:
Or if you are using the php-sdk like this:
Where $ids is an array with the IDs of the profiles or pages.