翻页查询机构对应标的物列表
名称 | 类型 | 是否必须 | 示例值 | 更多限制 | 描述 |
---|---|---|---|---|---|
proxy_nick | String | 必须 | xxx机构 | isv 授权的 机构名称 | |
page | Number | 必须 | 1 | 页码 | |
page_size | Number | 可选 | 40 |
|
单页条数,不填默认40,最大40 |
mini_start_time_str | String | 可选 | 2020-09-23 10:00:00 | 拍品开拍时间区间开始 格式:yyyy-MM-dd HH:mm:ss | |
max_start_time_str | String | 可选 | 2020-09-24 10:00:00 | 拍品开拍时间区间结束 格式:yyyy-MM-dd HH:mm:ss | |
mini_end_time_str | String | 可选 | 2020-09-28 10:00:00 | 拍品结束时间区间开始 格式:yyyy-MM-dd HH:mm:ss | |
max_end_time_str | String | 可选 | 2020-09-29 10:00:00 | 拍品结束时间区间结束 格式:yyyy-MM-dd HH:mm:ss | |
location_code | Number | 可选 | 330101 | 区域code(国标6位) | |
cat_id | Number | 可选 | 51231234 | 类目id | |
query_child | Boolean | 可选 | true |
|
查询子机构数据 |
名称 | 类型 | 示例值 | 描述 |
---|---|---|---|
result | Result4Top | 返回结果 | 返回结果(相同条件翻页数量上限5000条记录,超出的话无返回,请自行添加时间范围等限定条件后查询) |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret); AuctionZcItemlistPagequeryRequest req = new AuctionZcItemlistPagequeryRequest(); req.setProxyNick( "xxx机构" ); req.setPage(1L); req.setPageSize(40L); req.setMiniStartTimeStr( "2020-09-23 10:00:00" ); req.setMaxStartTimeStr( "2020-09-24 10:00:00" ); req.setMiniEndTimeStr( "2020-09-28 10:00:00" ); req.setMaxEndTimeStr( "2020-09-29 10:00:00" ); req.setLocationCode(330101L); req.setCatId(51231234L); req.setQueryChild( true ); AuctionZcItemlistPagequeryResponse 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 25 26 27 | < auction_zc_itemlist_pagequery_response > < result > < total_item >100</ total_item > < total_page >5</ total_page > < error_code >isv.system-error</ error_code > < page_size >40</ page_size > < current_page >1</ current_page > < item_list > &l t ;t> < auction_status >0</ auction_status > < auction_end >2019.11.29 15:39:53</ auction_end > < auction_start >2019.11.28 15:39:53</ auction_start > < main_pic_url >ur地址</ main_pic_url > < title >x市x路xxx房产</ title > < item_id >625583140878</ item_id > < start_price >23000000</ start_price > < location_code >330101</ location_code > < cat_id >341414141</ cat_id > < full_address >浙江省杭州市西湖区文一西路677号</ full_address > < apply_count >5</ apply_count > < view_count >100</ view_count > &l t ;/t> </ item_list > < error_msg >系统异常</ error_msg > </ result > </ auction_zc_itemlist_pagequery_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 > |
错误码 | 错误描述 | 解决方案 |
---|