“用户:wuhongjun”的版本间的差异
来自Blueidea
(以内容“手机API接口”创建新页面) |
|||
第1行: | 第1行: | ||
手机API接口 | 手机API接口 | ||
+ | |||
+ | == 登陆接口 == | ||
+ | |||
+ | '''请求地址''':http://192.168.1.5/teach/api/login<br> | ||
+ | '''请求方式''':POST<br> | ||
+ | '''请求参数''': | ||
+ | :{| class="wikitable" style="font-size:13px;" | ||
+ | ! 参数名称 | ||
+ | ! 必选 | ||
+ | ! 类型及范围 | ||
+ | ! 说明 | ||
+ | |- | ||
+ | !scope="row"|username | ||
+ | | true || string ||用户名 | ||
+ | |- | ||
+ | !scope="row"|authcode | ||
+ | | true || string || 密码经过md5加密后的字符串 | ||
+ | |} | ||
+ | '''返回结果''':JSON格式 | ||
+ | <source lang="javascript"> | ||
+ | { | ||
+ | "status":1, | ||
+ | "error":"", | ||
+ | "user":{} | ||
+ | } | ||
+ | </source> |
2014-07-22T00:10:09的版本
手机API接口
登陆接口
请求地址:http://192.168.1.5/teach/api/login
请求方式:POST
请求参数:
参数名称 必选 类型及范围 说明 username true string 用户名 authcode true string 密码经过md5加密后的字符串
返回结果:JSON格式
{ "status":1, "error":"", "user":{} }