01账户API - PandaTofu/FishPound GitHub Wiki

获取学校列表

  • 请求地址: http://app_domain/v1.0/school/list
  • 请求方法: GET
  • 请求参数: 无
  • 返回数据:
参数 类型 说明
result bool 结果(成功/失败)
error_code int 错误码(说明具体失败原因)
school_list list 学校列表

注册账户

  • 请求地址: http://app_domain/v1.0/user/sign_up
  • 请求方法: POST
  • 请求参数:
参数 是否必填 类型 说明
phone_number int 用户手机号
verification_code string 手机验证码
password string 密码
account_type int 账户类型(老师/家长)
school_id int 学校ID
teacher_id int 教师编号(如果是教师类型,则必填)
  • 返回数据:
参数 类型 说明
result bool 结果(成功/失败)
error_code int 错误码(说明具体失败原因)

登录账户

  • 请求地址: http://app_domain/v1.0/user/sign_in
  • 请求方法: POST
  • 请求参数:
参数 是否必填 类型 说明
phone_number int 用户手机号
password string 密码
  • 返回数据:
参数 类型 说明
result bool 结果(成功/失败)
error_code int 错误码(说明具体失败原因)
type int 账户类型
access_token int 访问令牌
⚠️ **GitHub.com Fallback** ⚠️