欢迎来到 wabc.cc 官方网站!
全国省市县行政区域划分

全国省市县行政区域划分

API参数 根据市获取区县获取全部省份根据省份获取市 调用地址: http,https://jisuapiarea.api.bdymkt.com/area/town 请求方式: GET 支持格式: application/json;charset=UTF-8 调用工具: 去调试 请求参数(Headers) 请求参数(Query) 名称 类型 是否必须 示例值 描述 parentid

联系电话: 13983470003
产品详情
API参数 根据市获取区县获取全部省份根据省份获取市 调用地址: http,https://jisuapiarea.api.bdymkt.com/area/town 请求方式: GET 支持格式: application/json;charset=UTF-8 调用工具: 去调试 请求参数(Headers) 请求参数(Query)
  • 名称
  • 类型
  • 是否必须
  • 示例值
  • 描述
  • parentid
  • integer
  • true
  • 162
  • 上级ID
请求参数(Body) 请求参数(Path) 请求示例 javapythongocurlphpnodejs 示例代码使用, 需要使用Maven加入依赖
<dependency>
    <groupId>com.baidubce</groupId>
    <artifactId>api-explorer-sdk</artifactId>
    <version>1.0.0</version>
</dependency>
                                    
                                        
import com.baidubce.http.ApiExplorerClient;
import com.baidubce.http.AppSigner;
import com.baidubce.http.HttpMethodName;
import com.baidubce.model.ApiExplorerRequest;
import com.baidubce.model.ApiExplorerResponse;

// 根据市获取区县 Java示例代码
public class RequestDemo {
    public static void main(String[] args) {
        String path = "http://gwgp-sdokbvtxvnh.n.bdcloudapi.com/area/town";
        ApiExplorerRequest request = new ApiExplorerRequest(HttpMethodName.GET, path);
        request.setCredentials("您的 access key", "您的 secret key");

        request.addHeaderParameter("Content-Type", "application/json;charset=UTF-8");
        
        request.addQueryParameter("parentid", "");
        
        

        ApiExplorerClient client = new ApiExplorerClient(new AppSigner());

        try {
          ApiExplorerResponse response = client.sendRequest(request);
          // 返回结果格式为Json字符串
          System.out.println(response.getResult());
        } catch (Exception e) {
          e.printStackTrace();
        }
    }
}
                                    

                                    点击复制代码
                                
正常返回示例
                                    {
    "status": 0,
    "msg": "ok",
    "result": [
        {
            "id": "1383",
            "name": "川汇区",
            "parentid": "162",
            "parentname": "周口",
            "areacode": "0394",
            "zipcode": "466000",
            "depth": "3"
        },
        {
            "id": "1384",
            "name": "项城市",
            "parentid": "162",
            "parentname": "周口",
            "areacode": "0394",
            "zipcode": "466200",
            "depth": "3"
        },
        {
            "id": "1385",
            "name": "扶沟县",
            "parentid": "162",
            "parentname": "周口",
            "areacode": "0394",
            "zipcode": "461300",
            "depth": "3"
        },
        {
            "id": "1386",
            "name": "西华县",
            "parentid": "162",
            "parentname": "周口",
            "areacode": "0394",
            "zipcode": "466600",
            "depth": "3"
        },
        {
            "id": "1387",
            "name": "商水县",
            "parentid": "162",
            "parentname": "周口",
            "areacode": "0394",
            "zipcode": "466100",
            "depth": "3"
        },
        {
            "id": "1388",
            "name": "沈丘县",
            "parentid": "162",
            "parentname": "周口",
            "areacode": "0394",
            "zipcode": "466300",
            "depth": "3"
        },
        {
            "id": "1389",
            "name": "郸城县",
            "parentid": "162",
            "parentname": "周口",
            "areacode": "0394",
            "zipcode": "477150",
            "depth": "3"
        },
        {
            "id": "1390",
            "name": "淮阳县",
            "parentid": "162",
            "parentname": "周口",
            "areacode": "0394",
            "zipcode": "466700",
            "depth": "3"
        },
        {
            "id": "1391",
            "name": "太康县",
            "parentid": "162",
            "parentname": "周口",
            "areacode": "0394",
            "zipcode": "475400",
            "depth": "3"
        },
        {
            "id": "1392",
            "name": "鹿邑县",
            "parentid": "162",
            "parentname": "周口",
            "areacode": "0394",
            "zipcode": "477200",
            "depth": "3"
        }
    ]
}
                                
失败返回示例 错误码定义
标签: {}
在线客服
微信联系
客服
扫码加微信(手机同号)
电话咨询
返回顶部