抖音极简版
    • 基础接口
      • 视频流接口
        GET
      • 用户注册
        POST
      • 用户登录
        POST
      • 用户信息
        GET
      • 投稿接口
        POST
      • 发布列表
        GET
    • 扩展接口-I
      • 赞操作
        POST
      • 点赞列表
        GET
      • 评论操作
        POST
      • 评论列表
        GET
    • 扩展接口-II
      • 关注操作
        POST
      • 关注列表
        GET
      • 粉丝列表
        GET
    • 数据模型
      • Response
      • Video
      • Comment
      • User

    Video

    {
        "id": 0,
        "author": {
            "id": 0,
            "name": "string",
            "follow_count": 0,
            "follower_count": 0,
            "is_follow": true
        },
        "play_url": "string",
        "cover_url": "string",
        "favorite_count": 0,
        "comment_count": 0,
        "is_favorite": true,
        "title": "string"
    }
    Built with