💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
### 使用描述 查询商品SPU列表(支持深度分页),根据获取的商品SPU编码,调用[查询商品SPU详情接口](查询商品SPU详情.md)获取SPU详细信息 ### [](https://duobaoyu.com.cn/documentcenter?onlyFlag=e67d342f68e2a87fecc0a159eab1ea40#%E6%96%B9%E6%B3%95%E5%90%8D)方法名 dby.scm.goods.spu.search.after ### [](https://duobaoyu.com.cn/documentcenter?onlyFlag=e67d342f68e2a87fecc0a159eab1ea40#%E7%BD%91%E5%85%B3%E5%9C%B0%E5%9D%80)网关地址 | 环境 | 地址 | 请求方式 | | --- | --- | --- | | 生产环境 | `https://openapi.duobaoyu.com.cn/open/api` | post+json | | 测试环境 | `https://openapi.duobaoyu88.cn/open/api` | post+json | ### [](https://duobaoyu.com.cn/documentcenter?onlyFlag=e67d342f68e2a87fecc0a159eab1ea40#%E5%85%AC%E5%85%B1query%E5%8F%82%E6%95%B0)公共Query参数 * * * | 名称 | 类型 | 必填 | 描述 | | --- | --- | --- | --- | | method | String | 是 | 方法名称 | | sign | String | 是 | [签名](签名规则.md) | | timestamp | String | 是 | 时间戳,格式为13位,例如:1670223623000 | | version | String | 是 | 版本号,现固定为v1 | | appKey | String | 是 | 申请的应用appKey | ### [](https://duobaoyu.com.cn/documentcenter?onlyFlag=e67d342f68e2a87fecc0a159eab1ea40#%E4%B8%9A%E5%8A%A1body%E5%8F%82%E6%95%B0applicationjson)业务Body参数(application/json) * * * | 名称 | 类型 | 必填 | 示例值 | 描述 | | --- | --- | --- | --- | --- | | startTime | java.lang.Long | 非必须 | 1660292599000 | 选品入库开始时间(13位时间戳) 例如: 1642664393000 | | endTime | java.lang.Long | 非必须 | 1671292799000 | 选品入库结束时间(13位时间戳) 例如: 1669193193421 | | productCategoryId | java.lang.Long | 非必须 | 123 | 商品三级分类ID | | offset | java.lang.String | 非必须 | 1678081183000\_50021751965 | 偏移量 | ### [](https://duobaoyu.com.cn/documentcenter?onlyFlag=e67d342f68e2a87fecc0a159eab1ea40#%E5%93%8D%E5%BA%94%E5%8F%82%E6%95%B0)响应参数 * * * | 参数名 | 类型 | 示范值 | 描述 | | --- | --- | --- | --- | | code | java.lang.String | 0 | 业务编码处理结果编码 | | msg | java.lang.String | 请求成功 | 业务处理结果结果说明 | | data | java.lang.Object | | 响应结果 | |   ├─offset | java.lang.String | 1668673140000\_52161083828 | 下次查询的偏移量(可当作入参) | |   ├─productCodePool | java.util.List | | 商品spu编码集合 | |     ├─productCode | java.lang.String | 52129944227 | 商品spu编码 | | msgId | java.lang.String | efd7f07011124adf | 消息id | ### [](https://duobaoyu.com.cn/documentcenter?onlyFlag=e67d342f68e2a87fecc0a159eab1ea40#%E8%AF%B7%E6%B1%82%E7%A4%BA%E4%BE%8B)请求示例 curljavaphp ~~~json curl -XPOST -H "Content-type: application/json" -d '{ "startTime":1660292599000, "endTime":1671292799000, "productCategoryId":5661231232, "offset":"1678081183000_50021751965" }' 'http://xxxxx/open/api?method=dby.scm.goods.spu.search.after&version=v1&appKey=your appKey&timestamp=1670057525000&sign=123' ~~~ ### [](https://duobaoyu.com.cn/documentcenter?onlyFlag=e67d342f68e2a87fecc0a159eab1ea40#%E5%93%8D%E5%BA%94%E7%A4%BA%E4%BE%8B)响应示例 ~~~json { "code": "0", "msg": "请求成功", "data": { "offset": "1678081183000_50021751965", "productCodePool": [ { "productCode": "50012469935" } ] }, "msgId": "ff6eec33d95c44ec" } ~~~ ### [](https://duobaoyu.com.cn/documentcenter?onlyFlag=e67d342f68e2a87fecc0a159eab1ea40#%E5%BC%82%E5%B8%B8%E7%A4%BA%E4%BE%8B)异常示例 ~~~json { "code": "1", "msg": "请求失败", "data": null, "msgId": "efd7f07011124adf" } ~~~