Currently experimenting with the FB GRAPH API Explorer Tool for the purpose of searching for (any) users by their first and last names.
Due to this bug (https://developers.facebook.com/bugs/331209630309433) I cannot test name searches via the Explorer, so I have instead resorted to investigating what types of data are returned when performing a search.
For this purpose, my test FQL queries are of the following format:
SELECT uid, username, first_name, last_name, sex, website, about_me , activities , email, current_location, birthday_date, books, interests, work, .... {any other field}
FROM user
WHERE uid in ({list of known/random user ids})
I noticed that the query returns values for the fields uid, username, first_name, last_name and sex for all users, but empty/null for any others.
What causes this? Is this because these users are not my 'FB Friends', their permissions are set not to return these fields to the FB G API, or both, or any other reason?
Also, I have noticed that most users have on their public FB website some links/information under the section 'Favorites > Other' - how does this map to the FB G API and how can this be retrieved?
Any advice is appreciated.
John Smith