|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182 |
- basePath: /api
- definitions:
- md.LoginReq:
- properties:
- code:
- example: 验证码
- type: string
- password:
- example: 登录密码
- type: string
- phone:
- example: 手机号
- type: string
- required:
- - password
- - phone
- type: object
- md.LoginResponse:
- properties:
- token:
- type: string
- type: object
- md.RegisterReq:
- properties:
- avatar:
- example: 头像
- type: string
- code:
- example: 验证码
- type: string
- invite_code:
- example: 邀请码
- type: string
- mobile:
- type: string
- nickname:
- example: 昵称
- type: string
- open_id:
- example: 微信openId
- type: string
- sex:
- description: 性别(0:未知 1:男 2:女)
- type: integer
- type:
- example: app:APP注册、h5:H5注册
- type: string
- union_id:
- example: 微信UnionId
- type: string
- required:
- - mobile
- type: object
- md.Response:
- properties:
- code:
- example: 响应码
- type: string
- data:
- description: 内容
- msg:
- example: 具体错误原因
- type: string
- type: object
- host: mp.xbkai.com
- info:
- contact:
- email: 1239118001@qq.com
- name: dengbiao
- url: http://www.swagger.io/support
- description: APP客户端-Api接口
- license:
- name: Apache 2.0
- url: http://www.apache.org/licenses/LICENSE-2.0.html
- termsOfService: http://swagger.io/terms/
- title: 蛋蛋星球-APP客户端
- version: "1.0"
- paths:
- /api/comm/getOssUrl:
- get:
- consumes:
- - application/json
- description: 上传许可链接(获取)
- parameters:
- - description: 验证参数Bearer和token空格拼接
- in: header
- name: Authorization
- required: true
- type: string
- produces:
- - application/json
- responses:
- "200":
- description: 许可链接
- schema:
- type: string
- "400":
- description: 具体错误
- schema:
- $ref: '#/definitions/md.Response'
- summary: 通用请求-对象存储-上传许可链接(获取)
- tags:
- - 对象存储
- /api/demo:
- post:
- consumes:
- - application/json
- description: Demo样例测试
- parameters:
- - description: 用户名密码
- in: body
- name: req
- required: true
- schema: {}
- produces:
- - application/json
- responses:
- "200":
- description: token
- schema:
- additionalProperties: true
- type: object
- "400":
- description: 具体错误
- schema:
- $ref: '#/definitions/md.Response'
- summary: Demo测试
- tags:
- - Demo
- /v1/login:
- post:
- consumes:
- - application/json
- description: 登入
- parameters:
- - description: 用户名密码
- in: body
- name: req
- required: true
- schema:
- $ref: '#/definitions/md.LoginReq'
- produces:
- - application/json
- responses:
- "200":
- description: token
- schema:
- $ref: '#/definitions/md.LoginResponse'
- "400":
- description: 具体错误
- schema:
- $ref: '#/definitions/md.Response'
- summary: 登陆
- tags:
- - 登录
- /v1/register:
- post:
- consumes:
- - application/json
- description: 注册
- parameters:
- - description: 注册参数
- in: body
- name: req
- required: true
- schema:
- $ref: '#/definitions/md.RegisterReq'
- produces:
- - application/json
- responses:
- "200":
- description: 登录成功返回
- schema:
- $ref: '#/definitions/md.LoginResponse'
- "400":
- description: 具体错误
- schema:
- $ref: '#/definitions/md.Response'
- summary: 注册
- tags:
- - 注册
- swagger: "2.0"
|