Search code examples
facebookapifacebook-graph-apisearch

Facebook: search people by company name


Is there is way to search people by company name (workplace) using the Facebook API?


Solution

  • Is there is way to search people by company name (workplace) using Facebook API ?

    No, there isn't any way to search people by company name.

    But yes, you can search friends by company name by fql.

    select name,work_history from user where uid in (SELECT uid2 FROM friend WHERE uid1=me()) and 'your company name' IN work_history.company_name