user1359454
user1359454

Reputation: 97

Facebook API - Search for users by name without access token

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

Answers (1)

Jashwant
Jashwant

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

Related Questions