名称:获取验证码区号
接口:/api/api/getAreaCode
请求方式:post
参数名 | 类型 | 必填 | 说明 | 示例 |
---|---|---|---|---|
说明
1.此方法需要登录,
{
"code": 200,
"message": "success",
"result": [
{
"id": 1, //id
"default": true, //是否是默认
"zh": "中国大陆", //国家信息
"area_code_show": "+86", //显示区号
"area_code": "86", //区号
"regular": "" //正则
},
{
"id": 2,
"default": false,
"zh": "中国香港",
"area_code_show": "+852",
"area_code": "852",
"regular": ""
},
{
"id": 3,
"default": false,
"zh": "中国台湾",
"area_code_show": "+886",
"area_code": "886",
"regular": ""
}
]
}