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

      登录验证(非正式登录,测试其他功能时使用)

      开发中
      POST
      http://localhost:8888/signup
      非正式登录,测试其他功能时使用

      请求参数

      Body 参数application/json
      id
      number 
      必需
      idcode
      string 
      必需
      示例
      {
        "id": 0,
        "idcode": "string"
      }

      示例代码

      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/signup' \
      --header 'Content-Type: application/json' \
      --data-raw '{
          "id": 0,
          "idcode": "string"
      }'

      返回响应

      🟢200成功
      application/json
      Body
      object {0}
      示例
      {}
      修改于 2023-04-22 15:43:02
      下一页
      图片验证
      Built with