美文网首页
小程序_用户接口

小程序_用户接口

作者: MatthewMx | 来源:发表于2019-02-17 02:09 被阅读0次

    http://ioh52t24oh.shhttp.cn

    1.用户登录 get 有待商定

    /user/login.do
    request

    Striing userId

    response

    success:
    {}

    error:
    {}


    2.用户注销 get

    /user/logout.do
    request

    Striing userId

    response

    success:
    {
    "status": 0,
    "data": "注销成功"
    }

    error:
    {}


    3.查询用户信息 get

    /user/queryUser.do
    request

    String userId

    response

    success:
    {
    "status": 0,
    "data": {
    "id": "1",
    "unionId": null,
    "openId": "1",
    "userName": "1",
    "province": "1",
    "city": "1",
    "country": "1",
    "headimgUrl": ""http://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTL92jiaDNTIIrD9OuKibf0cVTHCCCIO7bSvEaaNYicjcw1CbWJSWc0UuQicPwqFCickLTahD6bBz4mTCXA/132"",
    "teleNum": "1",
    "birthday": "1",
    "gender": null,
    "updateCnt": null,
    "concernCnt": null,
    "fansCnt": null,
    "noteCnt": null,
    "level": null,
    "levelPercent": null,
    "medalsNum": null,
    "role": null,
    "createTime": null,
    "updateTime": null
    }
    }

    error:
    {}


    4.更新用户信息 get

    /user/updateUser.do
    request

    String userId,String birthday,String city,String province,String country,int gender 除userId外可以为空

    response

    success:
    {
    "status": 0,
    "data": {
    "id": "1",
    "unionId": null,
    "openId": "1",
    "userName": "1",
    "province": "1",
    "city": "1",
    "country": "1",
    "headimgUrl": ""http://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTL92jiaDNTIIrD9OuKibf0cVTHCCCIO7bSvEaaNYicjcw1CbWJSWc0UuQicPwqFCickLTahD6bBz4mTCXA/132"",
    "teleNum": "1",
    "birthday": "1",
    "gender": null,
    "updateCnt": null,
    "concernCnt": null,
    "fansCnt": null,
    "noteCnt": null,
    "level": null,
    "levelPercent": null,
    "medalsNum": null,
    "role": null,
    "createTime": null,
    "updateTime": null
    }
    }

    error:
    {}


    相关文章

      网友评论

          本文标题:小程序_用户接口

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