我想得到一个通过州地区参数的城市列表 .

我得到了这个facebook webservice,我得到了一个国家的州名单

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

使用此网址的响应代码:

{
   "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
      }
    ]
}

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