如何在Facebook API上获取具有地区参数的城市列表

时间:2018-07-30 21:00:21

标签: facebook facebook-graph-api facebook-ads-api facebook-marketing-api

我想获得通过州地区参数的城市列表。

我使这个facebook网络服务成为我从一个国家/地区获得州列表

https://graph.facebook.com/v3.1/search?country_code=BR&limit=1000&location_types%5B0%5D=region&type=adgeolocation&access_token=XXXX

使用此URL响应代码:

{
   "data": [
      {
          "key": "438",
          "name": "Acre",
          "type": "region",
          "country_code": "BR",
          "country_name": "Brazil",
          "supports_region": true,
          "supports_city": true
      },
      {
          "key": "439",
          "name": "Alagoas",
          "type": "region",
          "country_code": "BR",
          "country_name": "Brazil",
          "supports_region": true,
          "supports_city": true
      }
    ]
}

有人可以帮助我吗?谢谢!

1 个答案:

答案 0 :(得分:0)

您只能获得一个带有q参数的非空值的城市列表,其中包含城市名称子字符串的值。我认为对于使用region_id的查询,这是不必要的限制。