- 小商店商品API什么时候可以支持商品详情文字的添加和更新?
[图片]
2021-06-23 - API为什么无法添加或更新SKU?这是BUG吗?
根据文档:https://developers.weixin.qq.com/miniprogram/dev/framework/ministore/minishopopencomponent/API/sku/get_sku.html 获取商品SKU信息为空: async function getSkuList(productId) { const res = await axios({ url: `https://api.weixin.qq.com/product/sku/get_list?access_token=${access_token}`, method: 'POST', data: { "product_id": productId, "need_edit_sku": 1, "need_real_stock": 0 } }) return res.data } await getSkuList(40327978) {"errcode":0,"skus":[]} 接下来一切操作让我怀疑人生: 1.更新商品(商品中有skus字段)无法更新sku,难道只能单独对sku进行更新? 2.调用添加sku接口(无论是批量还是单个操作)都是提示sku已添加(确实有个别添加过,然后后面已经删除了); { errcode: 9401005, errmsg: 'SKU已存在 rid: 60c23e8b-02327a25-028d231b' } 3.调用更新sku接口,提示更新已成功,但是获取又拿不到,完全不生效不生效不生效~ { update_time: '2021-06-11 00:46:49' } https://developers.weixin.qq.com/miniprogram/dev/framework/ministore/minishopopencomponent/API/sku/up_sku.html 有人解答吗?
2021-06-11 - 商品不能只有一级类目?一级类目的情况下,后台会报错~
商品:https://mp.weixin.qq.com/wxatrade/goods/entry?productId=40352642&token=1403557211&lang=zh_CN [图片] [图片] 求解答~
2021-06-10 - 商品详情是否能支持API提交,文档中没有相关字段?
https://developers.weixin.qq.com/miniprogram/dev/framework/ministore/minishopopencomponent/API/spu/add_spu.html desc_info.imgs string array 是商品详情,图文(目前只支持图片,最多20张) [图片] 商品详情怎么通过API上传?求指导~
2021-06-09