# 获取达人平台推广的短视频信息

# 接口说明

可通过该接口,可获取达人平台推广的短视频信息

# 接口调用请求说明

POST https://api.weixin.qq.com/channels/ec/promoter/get_feed_list?access_token=ACCESS_TOKEN

# 请求参数说明

参数 类型 是否必填 描述
talent_appid string 合作的达人平台id
next_key string 分页参数,第一页为空,后面返回前面一页返回的数据
page_size number 一页获取多少个数据,最大 10

# 请求参数示例

{
    "next_key": "",
    "page_size": 10,
    "talent_appid":""
}

# 返回参数说明

参数 类型 描述
errcode number 错误码
errmsg string 错误信息
next_key string 下一页的 key 内容
has_more bool 是否还有下一页
feed_list array object FeedInfo 可以推广的短视频列表

# 结构体

# FeedInfo

短视频信息

参数 类型 描述
export_id string 短视频 id
talent_appid string 所属的达人平台 id
predict_commission_amount number 预期机构结算金额【单位:分】
product_info object ProductInfo 短视频挂载的商品信息

# ProductInfo

短视频商品信息

参数 类型 描述
product_id number 商品id
product_name string 商品名称
product_img_url string 商品头图
product_mini_price number 商品价格

# 返回参数示例

{
  "errcode": "0",
  "errmsg": "ok",
  "has_more": false,
  "next_key":"",
  "feed_list":[
      {
          "export_id":"",
          "predict_commission_amount": 123,
          "talent_appid":"123",
          "product_info":{
              "product_id": 1,
              "product_name": "",
              "product_img_url": "",
              "product_mini_price": ""
          }
      }
  ]
}

# 错误码

错误码 错误描述
公共错误码 -
10024000 参数错误