城市编码查询

根据经纬度查询所在的城市id

请求地址: /v2/common/queryCity

服务协议: HTTP/GET

请求参数:

参数名称 类型 必选 说明
client_id string Y 申请时的client_id
timestamp long Y 时间戳
sign string Y 签名
longitude double Y 经度
latitude double Y 纬度

响应data参数:

参数名称 类型 必有 说明
city_code string Y 城市编码

结果示例:

{
    "code": 200,
    "success": true,
    "data": {
​        "city_code": "0571"
​    }
}