1. 互动接口
极简版抖音
  • 基础接口
    • 视频流接口
      GET
    • 用户注册
      POST
    • 用户登录
      POST
    • 用户信息
      GET
    • 投稿接口
      POST
    • 发布列表
      GET
  • 互动接口
    • 赞操作
      POST
    • 喜欢列表
      GET
    • 评论操作
      POST
    • 评论列表
      GET
  • 社交接口
    • 关注操作
      POST
    • 关注列表
      GET
    • 粉丝列表
      GET
    • 好友列表
      GET
    • 发送消息
      POST
    • 聊天记录
      GET
  1. 互动接口

评论操作

POST
/douyin/comment/action/

请求参数

Query 参数

请求示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/douyin/comment/action/?token=&video_id=&action_type=&comment_text=&comment_id='

返回响应

🟢200成功
application/json
Bodyapplication/json

示例
{
    "status_code": 0,
    "status_msg": "string",
    "comment": {
        "id": 0,
        "user": {
            "id": 0,
            "name": "string",
            "follow_count": 0,
            "follower_count": 0,
            "is_follow": true,
            "avatar": "string",
            "background_image": "string",
            "signature": "string",
            "total_favorited": "string",
            "work_count": 0,
            "favorite_count": 0
        },
        "content": "string",
        "create_date": "string"
    }
}
修改于 2023-02-18 03:19:59
上一页
喜欢列表
下一页
评论列表
Built with