开发者

Facebook search by name or email

开发者 https://www.devze.com 2023-03-28 12:28 出处:网络
I am developing a site with facebook connect using javascript Fql query. Is there a way, using javascript fql to search members by name or by email.

I am developing a site with facebook connect using javascript Fql query. Is there a way, using javascript fql to search members by name or by email.

开发者_如何学C

Thanks..


Yes, you can search different objects (groups, posts, events etc.) by providing a keyword. The format is: https://graph.facebook.com/search?q=QUERY&type=OBJECT_TYPE

More info in the 'Searching' section here: https://developers.facebook.com/docs/reference/api/

Note that you can't search by email.


Vikas's suggestion is good for Graph API. If you want FQL for more complex reasons, take a look at this example.

SELECT name, pic_square, profile_url FROM user WHERE contains("zuck")
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号