小程序
小游戏
企业微信
微信支付
扫描小程序码分享
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 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
你好,提供下appid, out_product_id
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
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); }
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
你好,提供下appid, out_product_id
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); }