taobao.cmin.footpath.get (店铺足迹接口New)

获取店铺内实时浏览足迹

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
buyer_nick String 必须 rushi051 买家昵称
cmin_param CminParam 可选 系统自动生成
  • └ end_time
  • Number
  • 可选
  • 0
  • 初始时间
  • └ size
  • Number
  • 可选
  • 20
  • 分页参数
source String 可选 qianniu
  • 默认值:qianniu
  • 调用来源

    响应参数

    名称 类型 示例值 描述
    item_list ItemPathDto [] item_list result
    • └ pic
    • String
    • http://test
    • pic
    • └ ump_price
    • String
    • 2.0
    • umpPrice
    • └ price
    • String
    • 3.0
    • price
    • └ title
    • String
    • test
    • title
    • └ url
    • String
    • http://test
    • url
    • └ time
    • String
    • 12312312313131
    • time
    • └ unique_id
    • String
    • 1_2
    • uniqueId

    请求示例

    • JAVA
    • .NET
    • PHP
    • CURL
    • Python
    • C/C++
    • NodeJS
    TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
    CminFootpathGetRequest req = new CminFootpathGetRequest();
    req.setBuyerNick("rushi051");
    CminFootpathGetRequest.CminParam obj1 = new CminFootpathGetRequest.CminParam();
    obj1.setEndTime(0L);
    obj1.setSize(20L);
    req.setCminParam(obj1);
    req.setSource("qianniu");
    CminFootpathGetResponse rsp = client.execute(req, sessionKey);
    System.out.println(rsp.getBody());

    响应示例

    • XML示例
    • JSON示例
    <cmin_footpath_get_response>
        <item_list>
            <item_path_dto>
                <pic>http://test</pic>
                <ump_price>2.0</ump_price>
                <price>3.0</price>
                <title>test</title>
                <url>http://test</url>
                <time>12312312313131</time>
                <unique_id>1_2</unique_id>
            </item_path_dto>
        </item_list>
    </cmin_footpath_get_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

    返回
    顶部