注意:以下文档只适用于TOP接口,请谨慎使用!

文档中心 > API类目 > ICBU卖家API

alibaba.supplier.content.list.get.new (小程序列表页获取)

小程序列表页获取,支持随机

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
category_id Number 可选 0 请求获取的类目id
page_size Number 必须 10 每页数量
page_idx Number 必须 1 当前页数
is_order Boolean 可选 true 是否排序
is_asc Boolean 可选 true 是否升序

响应参数

名称 类型 示例值 描述
offset Number 0 偏移量
total_item Number 12078 总数量
total_page Number 1208 总页数
page_size Number 10 页面大小
rows TrendsProductionModel [] 具体数据
  • └ summary
  • String
  • Woven 100% Linen Fabric
  • 概括
  • └ course_type
  • String
  • article
  • 文章类型
  • └ code
  • String
  • AX40GRTB
  • 文章code
  • └ month
  • Number
  • 1
  • 月份
  • └ read_num
  • Number
  • 0
  • 阅读数
  • └ publish_date
  • String
  • 2021-09-15 19:51:01
  • 发布时间
  • └ name
  • String
  • 机织100% 亚麻面料
  • 文章名称
  • └ yoy_text
  • String
  • 买家需求环比发展 104.1%
  • 增长率
  • └ recommend_index
  • String
  • 81.94
  • 推荐指数
  • └ logo_url
  • String
  • //sc04.alicdn.com/kf/Hc20038d88e67414598cf2f21fefd416dp.jpg
  • log的url
  • └ url
  • String
  • https://supplier.alibaba.com/textile-fabric/AX40GRTB.htm
  • 文章url
current_page Number 1 当前页

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaSupplierContentListGetNewRequest req = new AlibabaSupplierContentListGetNewRequest();
req.setCategoryId(0L);
req.setPageSize(10L);
req.setPageIdx(1L);
req.setIsOrder(true);
req.setIsAsc(true);
AlibabaSupplierContentListGetNewResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_supplier_content_list_get_new_response>
    <offset>0</offset>
    <total_item>12078</total_item>
    <total_page>1208</total_page>
    <page_size>10</page_size>
    <rows>
        <trends_production_model>
            <summary>Woven 100% Linen Fabric</summary>
            <course_type>article</course_type>
            <code>AX40GRTB</code>
            <month>1</month>
            <read_num>0</read_num>
            <publish_date>2021-09-15 19:51:01</publish_date>
            <name>机织100% 亚麻面料</name>
            <yoy_text>买家需求环比发展 104.1%</yoy_text>
            <recommend_index>81.94</recommend_index>
            <logo_url>//sc04.alicdn.com/kf/Hc20038d88e67414598cf2f21fefd416dp.jpg</logo_url>
            <url>https://supplier.alibaba.com/textile-fabric/AX40GRTB.htm</url>
        </trends_production_model>
    </rows>
    <current_page>1</current_page>
</alibaba_supplier_content_list_get_new_response>

异常示例

  • XML示例
  • JSON示例
<error_response>
    <code>50</code>
    <msg>Remote service error</msg>
    <sub_code>isv.invalid-parameter</sub_code>
    <sub_msg>非法参数</sub_msg>
</error_response>

错误码解释

错误码 错误描述 解决方案

API工具

如何获得此API

FAQ

返回
顶部