登录功能
    登录功能
    • 登录验证(非正式登录,测试其他功能时使用)
      POST
    • 图片验证
      GET
    • 注册1发送验证码
      POST
    • 注册2,验证+插入信息
      POST
    • 密码登录
      POST
    • 验证码登录1
      POST
    • 验证码登录2
      POST
    • 密码改密
      POST
    • 验证码改密1
      POST
    • 验证码改密2
      POST
    • 查询操作信息
      POST
    • 登出操作
      POST

      验证码改密2

      开发中
      POST
      http://localhost:8888/resetpaswbyemail2

      请求参数

      Body 参数application/json
      newpassword
      string 
      必需
      idcode
      string 
      必需
      verification
      integer 
      必需
      示例
      {
        "newpassword": "abcdef1234ad",
        "idcode": "ebbeb952-27d2-42cc-979c-bd99e517f0cd",
        "verification": 150756
      }

      示例代码

      Shell
      JavaScript
      Java
      Swift
      Go
      PHP
      Python
      HTTP
      C
      C#
      Objective-C
      Ruby
      OCaml
      Dart
      R
      请求示例请求示例
      Shell
      JavaScript
      Java
      Swift
      curl --location --request POST 'http://localhost:8888/resetpaswbyemail2' \
      --header 'Content-Type: application/json' \
      --data-raw '{
          "newpassword": "abcdef1234ad",
              "idcode": "ebbeb952-27d2-42cc-979c-bd99e517f0cd",
              "verification": 150756
      }'

      返回响应

      🟢200成功
      application/json
      Body
      code
      integer 
      必需
      msg
      string 
      成败信息
      必需
      data
      null 
      必需
      示例
      {
        "code": 200,
        "msg": "ok",
        "data": null
      }
      修改于 2023-05-16 14:06:12
      上一页
      验证码改密1
      下一页
      查询操作信息
      Built with