url = fmt.Sprintf("https://api.weixin.qq.com/product/sku/update?access_token=%s", accessToken) method = "POST" p := map[string]interface{}{ "out_product_id": fmt.Sprintf("%d", sku.GoodsId), "out_sku_id": fmt.Sprintf("%d", sku.GoodsId), "sale_price": sku.Price, "stock_num": 100_0000, "sku_attrs": func() interface{} { res := make([]interface{}, len(sku.Attrs)) for i, _ := range sku.Attrs { attr := &sku.Attrs[i] res[i] = map[string]interface{}{ "attr_key": attr.AttrKey, "attr_value": attr.AttrValue, } } return res }(), } if sku.SKUId != "" { p["out_sku_id"] = sku.SKUId } if len(sku.ThumbImgUrl) > 0 { p["thumb_img"] = sku.ThumbImgUrl } if sku.OriginPrice > sku.Price { p["market_price"] = sku.OriginPrice } params = p golang写的
添加商品没有价格https://api.weixin.qq.com/product/sku/add?access_token=xxxxxxxxx
2023-02-15我这也只是同样的情况啊。微信三方平台已经全网发布了 域名也是https 但是还是报错域名不行!有更仔细的文档么。我全网发布完后 我的域名就可以直接用了么
「第三方平台全网发布已通过, 但仍会提示 URL 存在严重安全风险, 无法设置」这种情况该如何处理?绑定时的错误提示为: [图片] 收到提示的公众号 AppID 为: wxcd8f28c73270287d 服务器配置的链接为: http://qqylm.znz300803.com/xx/xx/xx 第三方平台全网发布通过的依据为: [图片] 经「腾讯网址安全中心」( https://urlsec.qq.com/check.html ) 检测的结果如下图: [图片] 已解决: 感谢, 按照「小状元」朋友的思路, 第三方平台信息无改动的情况下, 将公众号后台「服务器配置」URL 指向的 WebServer 配置了 SSL 以后解决了此问题, 再次配置已经没有「禁止设置」的提示了.
2022-05-30