Facebook上的页面类别列表

时间:2013-02-14 18:11:30

标签: facebook-graph-api facebook-page koala

我正在开发一个Facebook搜索,我想列出所有页面类别(不相关,但我正在使用考拉ruby gem):

使用type =“page”进行搜索的结果如下:

{"category"=>"Community", "name"=>"Koala", "id"=>"7356642860"}
{"category"=>"Product/service", "name"=>"Koala Groupe", "id"=>"188919981197745"}
{"category"=>"Public figure", "name"=>"Cushelle Koala", "id"=>"109202405786555"}
{"category"=>"Dancer", "name"=>"Koala Dance Bots", "id"=>"208563099183596"}
{"category"=>"Musician/band", "name"=>"Kid Koala", "id"=>"17527901121"}
{...}

我正在尝试开发一个表单,以允许用户实现更精确的搜索。

然后,我希望用户有一个类别列表,但是:如何获取Facebook页面类别列表?

3 个答案:

答案 0 :(得分:5)

使用以下API获取页面类别列表

FB.api(
  '/fb_page_categories',
  'GET',
  {},
  function(response) {
      // Insert your code here
  }
);
You will get response as
 {
    "data": [
      {
        "name": "Advertising/Marketing",
        "fb_page_categories": [
          {
            "name": "Advertising Agency",
            "id": "164886566892249"
          },
          {
            "name": "Brand Agency",
            "id": "1736039333278498"
          },
          {
            "name": "Copywriting Service",
            "id": "197029287003787"
          },
          {
            "name": "Digital/Online Marketing Agency",
            "id": "1751954525061797"
          },
          {
            "name": "Internet Marketing Service",
            "id": "1706730532910578"
          },
          {
            "name": "Marketing Agency",
            "id": "123377808095874"
          },
          {
            "name": "Marketing Consultant",
            "id": "170992992946914"
          },
          {
            "name": "Media Agency",
            "id": "281507032196735"
          },
          {
            "name": "Public Relations Agency",
            "id": "192021210817573"
          },
          {
            "name": "Social Media Agency",
            "id": "530553733821238"
          },
          {
            "name": "Telemarketing Service",
            "id": "197557456921449"
          }
        ],
        "id": "1757592557789532"
      }

and so on.... 

答案 1 :(得分:2)

这里有一个类似的问题:

Authoritative List of all Facebook Subcategories

我回答说。希望这会有所帮助。

答案 2 :(得分:1)

标准的图谱API调用将是:

https://graph.facebook.com/v2.10/fb_page_categories?access_token={access_token_obfuscated}

相关问题