作者: 杨泽_8a06 | 来源:发表于2018-04-02 15:44 被阅读0次

    学术研究小程序接口

    必须参数(token,time)

    参数 必选 类型 说明
    time true int 时间戳(用于确定接口的访问时间)
    token true string tokentoken服务器验证规则为MD5(['api_'.MD5(传过去的所有值(除timetoken)).'_api']))

    1.用户登录接口

    post localhost/api/public/login

    参数 必选 类型 说明
    name true string 用户昵称
    upwd true string 登录密码(MD5加密)
      {
           "ret":200,  //返回结果状态。200:接口正常请求并返回/400:服务端的数据有误/500:服务器运行错误
           "msg":""  //Success
           "data":{
                    "id":"1",//用户id
                    "name":"1"   //用户名  
                    "sex":"1"   //性别。1:男/2:女
                    "academic":"1"   //学术研究方向
                    "securityCard":"1"   //用户密保答案
             },
      } 
    

    2.用户注册接口

    post localhost/api/public/register

    参数 必选 类型 说明
    name true string 用户昵称
    upwd true string 登录密码(MD5加密)
    sex false int 性别(1:男/2:女)
    academic false string 学术研究方向
    securityCard false string 用户密保答案
      {
           "ret":200,  //返回结果状态。200:接口正常请求并返回/400:服务端的数据有误/500:服务器运行错误
           "msg":"注册成功"  //Success
           "data":{ },
      } 
    

    3.发布页面接口

    post localhost/api/public/insertAdts

    参数 必选 类型 说明
    i_title true string 学术研究页面标题
    i_p true string 学术研究姓名(班级)
    i_name true string 学术研究主题
    i_map true string 研究地点
    i_pople true int 准备人数
    i_type true string 研究类型(个人或团体)
    i_text true string 团队 或个人简介
    i_supOne true string 个人或团队优势1
    i_supTwo true string 个人或团队优势2
    i_supThree true string 个人或团队优势3
    i_supFoue true string 个人或团队优势4
    i_supFive true string 个人或团队优势5
    i_supSix true string 个人或团队优势6
    i_speOneName true string 专题1标题
    i_speOneContent true string 专题1详情
    i_speTwoName true string 专题2标题
    i_speTwoContent true string 专题2详情
    i_time true time 创建时间
    l_id int int 创建人
      {
           "ret":200,  //返回结果状态。200:接口正常请求并返回/400:服务端的数据有误/500:服务器运行错误
           "msg":"Success"  //Success
           "data":{ 
                  'html': 'localhost/api/public/adts/1/1'
             },
      } 
    

    相关文章

      网友评论

          本文标题:

          本文链接:https://www.haomeiwen.com/subject/kznthftx.html