查询用户在其他平台店铺的商品发布到ICBU后,是否获得了优品权益的状态和外贸服务平台所关注的其他数据
名称 | 类型 | 是否必须 | 示例值 | 更多限制 | 描述 |
---|---|---|---|---|---|
external_icbu_product_rights_query_param | ExternalIcbuProductRightsQueryParam | 必须 | ICBU商品获得权益查询参数 | ||
|
名称 | 类型 | 示例值 | 描述 |
---|---|---|---|
result_dto | ResultDto | resultDto | |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 | TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret); AlibabaIcbuShopcloneIcbuproductrightsQueryRequest req = new AlibabaIcbuShopcloneIcbuproductrightsQueryRequest(); AlibabaIcbuShopcloneIcbuproductrightsQueryRequest.ExternalIcbuProductRightsQueryParam obj1 = new AlibabaIcbuShopcloneIcbuproductrightsQueryRequest.ExternalIcbuProductRightsQueryParam(); obj1.setFromProductUniqueIds( "" 5A2E6C1F ", " 567ABCDE "" ); obj1.setCompanyId(200012245L); obj1.setAccountId(2215693550141L); obj1.setFromShopPlatformCode( "1688" ); obj1.setFromShopUniqueId( "1234567ABCDE" ); obj1.setIcbuProductIds( new Long[] { 1005936231 , 2345166496 }; ); req.setExternalIcbuProductRightsQueryParam(obj1); AlibabaIcbuShopcloneIcbuproductrightsQueryResponse rsp = client.execute(req); System.out.println(rsp.getBody()); |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | < alibaba_icbu_shopclone_icbuproductrights_query_response > < result_dto > < success >false</ success > < result_code >PARAM_INVALID</ result_code > < result_msg >参数不合法</ result_msg > < external_icbu_product_rights_query_result_dto > < succeed_products > < icbu_product_rights_vo > < from_product_unique_id >xxxxx</ from_product_unique_id > < icbu_product_id >3</ icbu_product_id > < good_product_right_enabled >false</ good_product_right_enabled > </ icbu_product_rights_vo > </ succeed_products > < unknown_product_ids > < number >Top</ number > < number >Pub</ number > </ unknown_product_ids > < invalid_product_ids > < number >Top</ number > < number >Pub</ number > </ invalid_product_ids > </ external_icbu_product_rights_query_result_dto > </ result_dto > </ alibaba_icbu_shopclone_icbuproductrights_query_response > |
1 2 3 4 5 6 | < error_response > < code >50</ code > < msg >Remote service error</ msg > < sub_code >isv.invalid-parameter</ sub_code > < sub_msg >非法参数</ sub_msg > </ error_response > |
错误码 | 错误描述 | 解决方案 |
---|