Skip to content

Latest commit

 

History

History
223 lines (143 loc) · 5.13 KB

kuaishou.md

File metadata and controls

223 lines (143 loc) · 5.13 KB

API 文档

快手

以下POST请求参数均使用raw json格式,例如添加账号接口参数为:{"id": "test", "cookie": ""}

添加账号

  • 功能说明

用于添加快手账号,cookie最好复制视频详情页中https://www.kuaishou.com/graphql接口请求时带的cookie,成功率较高。

  • URL

    /kuaishou/add_account

  • Method

    POST

  • Data Params

参数 必选 类型 说明
id true string 账户名(用于管理用户cookie)
cookie true string 快手cookie
  • Response
参数 必选 类型 说明
code true int 0: 成功 1: 参数错误 2: 服务器错误
data true struct 数据
msg true string 请求说明(成功、参数错误、服务器错误)

过期账号

  • 功能说明

用于标记账号过期,之后不再使用该账号发送请求。

  • URL

    /kuaishou/expire_account

  • Method

    POST

  • Data Params

参数 必选 类型 说明
id true string 账户名(用于管理用户cookie)
  • Response
参数 必选 类型 说明
code true int 0: 成功 1: 参数错误 2: 服务器错误
data true struct 数据
msg true string 请求说明(成功、参数错误、服务器错误)

获取账号列表

  • URL

    /kuaishou/account_list

  • Method

    GET

  • URL Params

    None

  • Response

参数 必选 类型 说明
code true int 0: 成功 1: 参数错误 2: 服务器错误
data true list [ 账户信息 ]
msg true string 请求说明(成功、参数错误、服务器错误)

账户信息

参数 必选 类型 说明
id true string 账户名(用于管理用户cookie)
cookie true string 快手cookie
ct true int 创建时间戳
ut true int 更新时间戳
expired true int 0: 有效 1: 过期 (请求失败时自动设为过期)

获取视频详情

  • URL

    /kuaishou/detail

  • Method

    GET

  • URL Params

参数 必选 类型 说明
id true string 快手视频id,从推荐等接口中获取,例如: 3xruk6a5qw3n6xq
  • Success Response
参数 必选 类型 说明
code true int 0: 成功 1: 参数错误 2: 服务器错误
data true struct 数据
msg true string 请求说明(成功、参数错误、服务器错误)

获取视频评论

  • URL

    /kuaishou/comments

  • Method

    GET

  • URL Params

参数 必选 类型 说明
id true string 快手视频id
offset false int 评论翻页偏移量, 默认0
limit false int 评论数量, 默认20
  • Success Response
参数 必选 类型 说明
code true int 0: 成功 1: 参数错误 2: 服务器错误
data true struct 数据
msg true string 请求说明(成功、参数错误、服务器错误)

获取评论回复

  • URL

    /kuaishou/replys

  • Method

    GET

  • URL Params

参数 必选 类型 说明
id true string 快手视频id,从推荐等接口中获取,例如: 3xruk6a5qw3n6xq
comment_id true string 视频评论id,从评论中获得到的commentId,例如: 834114470749
offset false int 评论翻页偏移量, 默认0
limit false int 评论数量, 默认20
  • Success Response
参数 必选 类型 说明
code true int 0: 成功 1: 参数错误 2: 服务器错误
data true struct 数据
msg true string 请求说明(成功、参数错误、服务器错误)

关键词搜索视频

  • URL

    /kuaishou/search

  • Method

    GET

  • URL Params

参数 必选 类型 说明
keyword true string 搜索词
offset false int 搜索翻页偏移量, 默认0
limit false int 结果数量, 默认20
  • Success Response
参数 必选 类型 说明
code true int 0: 成功 1: 参数错误 2: 服务器错误
data true struct 数据
msg true string 请求说明(成功、参数错误、服务器错误)

用户信息及作品获取

  • URL

    /kuaishou/user

  • Method

    GET

  • URL Params

参数 必选 类型 说明
id true string 用户id,用户详情页url中获取,例如: 3x5mpuwhjphwr8w
offset false int 作品翻页偏移量, 默认0
limit false int 作品返回数量, 默认20
  • Success Response
参数 必选 类型 说明
code true int 0: 成功 1: 参数错误 2: 服务器错误
data true struct 数据
msg true string 请求说明(成功、参数错误、服务器错误)