收藏
回答

标准交易组件获取商品列表为空

https://developers.weixin.qq.com/miniprogram/dev/platform-capabilities/business-capabilities/ministore/minishopopencomponent/API/spu/get_spu_list.html

使用接口获取商品列表,返回为空,商店已有上架商品

https://api.weixin.qq.com/product/spu/get_list
{
  "code": 200,
  "message": "success",
  -
  "data": {
  "errcode": 0,
  "spus": [ ],
  "total_num": 0
  }
}
回答关注问题邀请回答
收藏

2 个回答

  • 社区技术运营专员--阳光
    社区技术运营专员--阳光
    2021-11-12

    你好,提供下appid, out_product_id

    2021-11-12
    有用
    回复 1
    • JIU
      JIU
      2021-11-12
      wxaefecf7cfc0dfb93,无out_product_id,我想在小程序中获取完整的商品列表,目前的组件只能获取详情页及购物车这些。
      2021-11-12
      回复
  • 请叫我星哥
    请叫我星哥
    2023-09-11

    php post 提交需要中文不转码:json_encode($data, JSON_UNESCAPED_UNICODE)

    function curl_post($url, $data) {
          $data = json_encode($data, JSON_UNESCAPED_UNICODE);
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_URL, $url);
        curl_setopt($ch, CURLOPT_POST, true);
        curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
        curl_setopt($ch, CURLOPT_HTTPHEADER, array(
    		'Content-Type: application/json;charset=UTF-8;'
    		)
        );
        $handles = curl_exec($ch);
        curl_close($ch);
        return json_decode($handles, true);
    }
    
    2023-09-11
    有用
    回复
登录 后发表内容