记账本
  1. 登陆注册
记账本
  • 登陆注册
    • 注册
      POST
    • 登陆
      POST
  • 账单信息
    • 账单列表
      GET
    • 消费类型列表
      GET
    • 新增账单
      POST
    • 修改账单
      POST
    • 账单详情
      GET
    • 删除账单
      POST
    • 账单统计
      GET
  • 用户信息
    • 获取用户信息
      GET
    • 编辑用户信息
      POST
    • 修改用户密码
      POST
  1. 登陆注册

注册

开发中
POST
http://47.99.134.126:7009/api/user/register

请求参数

Body 参数application/x-www-form-urlencoded
password
string 
必需
示例值:
xiumubai
username
string 
必需
示例值:
xiumubai

示例代码

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://47.99.134.126:7009/api/user/register' \
--data-urlencode 'password=xiumubai' \
--data-urlencode 'username=xiumubai'

返回响应

🟢200成功
application/json
Body
code
integer 
必需
msg
string 
必需
data
null 
必需
示例
{"code":200,"msg":"注册成功","data":null}
修改于 2022-10-18 02:46:52
下一页
登陆
Built with