Authored by gezhengwen

Update 地址管理.md

... ... @@ -312,4 +312,199 @@ code为200即为成功,否则是失败。
"message":"要修改的地址ID或者用户ID为空.",
"code":500
}
```
\ No newline at end of file
```
## 6、根据地址id 获得省、市、地区列表 ##
根据地址id 获得省、市、地区列表(?method=app.address.provinces)
#### 公共请求参数
| 参数名称 | 参数类型 | 长度 | 可否为空 | 示例 | 默认值 | 备注 |
|:-------| -----:|-----:|-----:|-----:|-----:|----:|
|client_secret|string|50|否|5ac68f20cb18efe154be||进入接口提供的参数加密信息|
|app_version|float|10|否|1||APP版本|
|os_version|string|20|否|Android4.4||系统版本+机器型号|
|client_type|string|20|否|iphone/android/ipad||手机型号(不区分大小写)|
|screen_size|string|20|否|800x900||(手机尺寸)|
#### 请求参数
| 参数名称 | 参数类型 | 长度 | 可否为空 | 示例 | 默认值 | 备注 |
|:-------| -----:|-----:|-----:|-----:|-----:|----:|
|id|int|否|1-11|6117354||地址ID|
#### 接口说明
| 接口说明||
|:-------| -----:|
|请求域名|http://api.yoho.cn|
|接口名|app.address.del|
|根据地址id 获得省、市、地区列表|
|http请求方式|POST/GET|
注意,通用的头部没有列出。
请求示例
http://192.168.102.205:8080/gateway?method=app.address.provinces&id=0
### 响应
code为200即为成功,否则是失败。
响应参数,data部分
响应成功JSON格式如下所示:
```json
{
"alg": "SALT_MD5",
"code": 200,
"data": [
{
"is_support_express": "Y",
"caption": "北京市",
"id": "11"
},
{
"is_support_express": "Y",
"caption": "天津市",
"id": "12"
},
{
"is_support_express": "Y",
"caption": "河北省",
"id": "13"
},
{
"is_support_express": "Y",
"caption": "山西省",
"id": "14"
},
{
"is_support_express": "Y",
"caption": "内蒙古自治区",
"id": "15"
},
{
"is_support_express": "Y",
"caption": "辽宁省",
"id": "21"
},
{
"is_support_express": "Y",
"caption": "吉林省",
"id": "22"
},
{
"is_support_express": "Y",
"caption": "黑龙江省",
"id": "23"
},
{
"is_support_express": "Y",
"caption": "上海市",
"id": "31"
},
{
"is_support_express": "Y",
"caption": "江苏省",
"id": "32"
},
{
"is_support_express": "Y",
"caption": "浙江省",
"id": "33"
},
{
"is_support_express": "Y",
"caption": "安徽省",
"id": "34"
},
{
"is_support_express": "Y",
"caption": "福建省",
"id": "35"
},
{
"is_support_express": "Y",
"caption": "江西省",
"id": "36"
},
{
"is_support_express": "Y",
"caption": "山东省",
"id": "37"
},
{
"is_support_express": "Y",
"caption": "河南省",
"id": "41"
},
{
"is_support_express": "Y",
"caption": "湖北省",
"id": "42"
},
{
"is_support_express": "Y",
"caption": "湖南省",
"id": "43"
},
{
"is_support_express": "Y",
"caption": "广东省",
"id": "44"
},
{
"is_support_express": "Y",
"caption": "广西壮族自治区",
"id": "45"
},
{
"is_support_express": "Y",
"caption": "海南省",
"id": "46"
},
{
"is_support_express": "Y",
"caption": "重庆市",
"id": "50"
},
{
"is_support_express": "Y",
"caption": "四川省",
"id": "51"
},
{
"is_support_express": "Y",
"caption": "贵州省",
"id": "52"
},
{
"is_support_express": "Y",
"caption": "云南省",
"id": "53"
},
{
"is_support_express": "Y",
"caption": "西藏自治区",
"id": "54"
},
{
"is_support_express": "Y",
"caption": "陕西省",
"id": "61"
},
{
"is_support_express": "Y",
"caption": "甘肃省",
"id": "62"
},
{
"is_support_express": "Y",
"caption": "青海省",
"id": "63"
},
{
"is_support_express": "Y",
"caption": "宁夏回族自治区",
"id": "64"
},
{
"is_support_express": "Y",
"caption": "新疆维吾尔自治区",
"id": "65"
}
],
"md5": "c505f4fa23e86e810b1c0eb296ef9a4a",
"message": "provinces list."
}
```
... ...