- 上传临时素材报错?
微信公众号中,调用上传临时素材接口一直报错:{ errcode: 41005, errmsg: 'media data missing hint: [yZz2Ka04137734] rid: 65631d6d-1869b2fe-295e2f24' } 请指教,谢谢~ [图片]
2023-11-26 - JSPAI下单接口报错
已经配置了相应的请求头,但一直报错:Http头缺少Accept或User-Agent [图片]
2023-11-10 - 微信公众号调用V3版JSAPI无法调起支付页面
前端使用Vue2进行开发,JSAPI下单可以正常调用并返回结果,但是无法调起支付界面。[图片] import WeixinJSBridge from 'weixin-js-sdk' actionJSAPI() { toActionJSAPI(this.param) .then((res) => { if (typeof WeixinJSBridge === 'undefined') { if (document.addEventListener) { document.addEventListener( 'WeixinJSBridgeReady', this.onBridgeReady(res.data), false ) } else if (document.attachEvent) { document.attachEvent( 'WeixinJSBridgeReady', this.onBridgeReady(res.data) ) document.attachEvent( 'onWeixinJSBridgeReady', this.onBridgeReady(res.data) ) } } else { this.onBridgeReady(res.data) } }) .catch((err) => {}) }, onBridgeReady(param) { WeixinJSBridge.invoke( 'getBrandWCPayRequest', { appId: param.appId, //公众号ID timeStamp: param.timeStamp, //时间戳,自1970年以来的秒数 nonceStr: param.nonceStr, //随机串 package: param.package, signType: param.signType, //微信签名方式: paySign: param.paySign, //微信签名 }, function (res) { if (res.err_msg === 'get_brand_wcpay_request:ok') { this.$toast('支付成功') return false } else if (res.err_msg === 'get_brand_wcpay_request:cancel') { this.$toast('支付取消') return false } else if (res.err_msg === 'get_brand_wcpay_request:fail') { this.$toast('支付失败') return false } } ) },
2023-11-07