aliexpress.postproduct.redefining.listtbproductbyids (获取淘宝原始产品信息)

获取原始产品信息

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
product_ids String 可选 0 ae 产品id列表,用逗号分隔,最大不能超过100个id

响应参数

名称 类型 示例值 描述
result AeopTaoDaiXiaoProductResultDto 0 result
  • tdx_product_list
  • AeopTaoDaiXiaoProductResultDto []
  • 0
  • tdxProductList
  • └ user_type
  • String
  • 0
  • 商品所属卖家用户类型,b:商城, c:淘宝集市
  • └ shop_title
  • String
  • qi gege
  • 淘宝店铺名称
  • └ pic_url
  • String
  • 0
  • 产品主图的URL
  • └ nick
  • String
  • hello
  • 淘宝卖家的昵称
  • └ tb_num_iid
  • Number
  • 1234
  • 淘宝商品ID
  • └ title
  • String
  • beautiful clothes in 2015
  • 淘代销商品的标题
  • └ detail_url
  • String
  • 0
  • 淘代销商品URL
  • └ id
  • Number
  • 0
  • id
  • └ error_code
  • Number
  • 16009999
  • 错误代码
  • └ error_message
  • String
  • 系统异常!
  • 错误信息

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AliexpressPostproductRedefiningListtbproductbyidsRequest req = new AliexpressPostproductRedefiningListtbproductbyidsRequest();
req.setProductIds("0");
AliexpressPostproductRedefiningListtbproductbyidsResponse rsp = client.execute(req, sessionKey);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<aliexpress_postproduct_redefining_listtbproductbyids_response>
    <result>
        <tdx_product_list>
            <aeop_tao_dai_xiao_product_result_dto>
                <user_type>0</user_type>
                <shop_title>qi gege</shop_title>
                <pic_url>0</pic_url>
                <nick>hello</nick>
                <tb_num_iid>1234</tb_num_iid>
                <title>beautiful clothes in 2015</title>
                <detail_url>0</detail_url>
                <id>0</id>
            </aeop_tao_dai_xiao_product_result_dto>
        </tdx_product_list>
        <error_code>16009999</error_code>
        <error_message>系统异常!</error_message>
    </result>
</aliexpress_postproduct_redefining_listtbproductbyids_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

返回
顶部