Reputation: 97
I need to search for certain users on Facebook by their names(ex. Full name or First_name). Is it possible to do that without having access token for user?
Upvotes: 1
Views: 2958
Reputation: 28995
No, you cant do that,
Atmost, you can search for User object (note, that you MUST provide search type) (will include everything related with jashwant)
http://graph.facebook.com/search?q=jashwant
but this
http://graph.facebook.com/search?q=jashwant&type=user
append access_token to requested URL.
Upvotes: 3