API for query the execution result of feed.
名称 | 类型 | 是否必须 | 示例值 | 更多限制 | 描述 |
---|---|---|---|---|---|
job_id | Number | 可选 | 200000000060054475 | job id |
名称 | 类型 | 示例值 | 描述 |
---|---|---|---|
job_id | Number | 200000000060054475 | job id |
success_item_count | Number | 1 | Count of successful items after executed under this job |
result_list | SingleItemResponseDto [] | Result list after all the item_content,which were previously submitted through API:aliexpress.solution.feed.submit, have been executed , including both successful and unsuccessful items. | |
|
|||
total_item_count | Number | 1 | Count of total items under this job |
1 2 3 4 5 | TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret); AliexpressSolutionFeedQueryRequest req = new AliexpressSolutionFeedQueryRequest(); req.setJobId(200000000060054475L); AliexpressSolutionFeedQueryResponse rsp = client.execute(req, sessionKey); System.out.println(rsp.getBody()); |
1 2 3 4 5 6 7 8 9 10 11 | < aliexpress_solution_feed_query_response > < job_id >200000000060054475</ job_id > < success_item_count >1</ success_item_count > < result_list > < single_item_response_dto > < item_execution_result >{"productId":33030372006,"success":true}</ item_execution_result > < item_content_id >A00000000Y1</ item_content_id > </ single_item_response_dto > </ result_list > < total_item_count >1</ total_item_count > </ aliexpress_solution_feed_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 > |
错误码 | 错误描述 | 解决方案 |
---|