1. 获取接口验证字符
###
+++
get:http://*/index.php?ctl=Login&met=getAppVerifyCode&typ=json&app_token=加密字符串
*app_token=加密字符串#生成规则:加密键值对 “verify_key=value”, value由客户端随机生成,需要存储在客户端本地,在获取手机验证码 的API中还要使用。
<<<
success
{
"status": "200",
"data": {
"verify_code":"1234"
}
}
+++
2.通过 验证字符 获取手机验证码
### **(1) 注册**
###
+++
get:http://*/index.php?ctl=Login&met=appRegCode&typ=json&app_token=加密字符串
*app_token=加密字符串#生成规则:加密键值对 ,键值对为下边的所有参数
*mobile=手机号#
*email=邮箱#没有传空即可
*verify_code=验证码#验证字符API中返回值中的
*verify_key=验证码对应的key#验证字符API中的verify_key
<<<
success
{
"status": "200",
"data": {
}
}
+++
### **(2) 忘记密码**
###
+++
get:http://*/index.php?ctl=Login&met=appPhoneCode&typ=json&app_token=加密字符串
*app_token=加密字符串#生成规则:加密键值对 ,键值对为下边的所有参数
*mobile=手机号#
*email=邮箱#没有传空即可
*verify_code=验证码#验证字符API中返回值中的
*verify_key=验证码对应的key#验证字符API中的verify_key
<<<
success
{
"status": "200",
"data": {
}
}
+++