您好,请参考:https://pay.weixin.qq.com/wiki/doc/api/app/app.php?chapter=11_1
游戏app支付游戏app是C/C++编写移动端 使用什么方式能更快地接入微信app跳转支付 或者通过什么样的方式让它给java支付等方式 有大佬们分享下么?
2020-06-15您好,具体会用到哪个接口
小程序·云开发新推出原生微信支付支持商户后台的单品券核销吗?“小程序·云开发新推出原生微信支付能力支持,拥有简单、安全、免签名、免证书、支付结果可回调云函数的特点。开发者在云开发控制台可直接绑定微信支付商户,在绑定完成后可在云开发中原生接入微信支付。” 小程序端代码 gotopay: function (e) { //构建时间 const curDate = new Date() var h = curDate.getHours() + 8; var m = curDate.getMinutes(); var s = curDate.getSeconds(); s = s < 10 ? "0" + s : s; m = m < 10 ? "0" + m : m; h = h < 10 ? "0" + h : h; const time = `${curDate.getFullYear()}-${curDate.getMonth() + 1}-${curDate.getDate()} ${h}:${m}:${s}` //单品核销优惠券 const orderlist = this.data.selarr let body = '' let goodsdetail_list = [] for (let i = 0; i < orderlist.length; i++) { body += '/' + orderlist[i].title //////单品优惠///////////////////////////////////// let goods_detail = { "goods_id": orderlist[i]._id, "quantity": 1, "price": orderlist[i].demo_price } goodsdetail_list.push(goods_detail) //////////////////////////////////////////////// } const detail = JSON.stringify({ "goods_detail": goodsdetail_list }) body = body.substr(1) //不能大于128字符 body = body.substring(0, 128) wx.cloud.callFunction({ name: 'cloudpay', data: { body: body, totalfee: this.data.demo_total,//元转化为分 detail: detail }, success: res => { const payment = res.result.payment console.log('payment', payment) wx.requestPayment({ ...payment, success(res) { console.log('pay success', res) }, fail(err) { console.error('pay fail', err) } }) }, fail: console.error, }) } //云函数端代码 const cloud = require('wx-server-sdk') cloud.init({ env: cloud.DYNAMIC_CURRENT_ENV }) exports.main = async (event, context) => { const {body,totalfee,detail}=event console.log('detail:',detail) const res = await cloud.cloudPay.unifiedOrder({ "body":body, "detail":detail, "envId":"云环境ID", "functionName":"cloudpayreturn", // "nonceStr":"5K8264GGTKUU16AA3302SI8ZRRTM67MM", "outTradeNo":`${Date.now().toString().slice(3)}`, // "outTradeNo":"1217752501201407033299368099", "spbillCreateIp":"127.0.0.1", "subMchId":"商户号", "totalFee":totalfee, "version":"1.0", //单品券要用的字段/// "tradeType":"JSAPI" }) return res } //以上代码全场券可能核销,单品券不启作用,希望微信支付官方人员指导
2020-06-15您好,请在这里咨询:https://developers.weixin.qq.com/community/develop/mixflow
被动回复用户消息 (报错:该公众号暂时无法提供服务,请稍后再试)[图片]请问下社区大佬们。到底是哪里出错了。。整了半天 硬是没整明白。。。提交的xml格式没错啊。。😔
2020-06-15代金券,全场预充值券
政府发放消费券应该选什么类型?如题。
2020-06-15您好,请参考:https://developers.weixin.qq.com/community/pay/doc/000846138347000297e8853895b408?blockType=8
小微商户进件Cipher报错Cipher cipher = Cipher.getInstance(ALGORITHM, "SunJCE"); java.security.NoSuchAlgorithmException: No such algorithm: AES/GCM/NoPadding
2020-06-15您好,请参考:https://developers.weixin.qq.com/community/pay/doc/000846138347000297e8853895b408?blockType=8
小微商进件解密报java.security.NoSuchAlgorithmException:java.security.NoSuchAlgorithmException: No such algorithm: AES/GCM/NoPadding
2020-06-15应该是风控了,可以让用户联系一下客服同事确认一下95017
【微信支付商家消费券】【微信支付商家消费券】领取的时候提示“该账号暂时不能领取优惠券,请更换其他账号后重试”,这是什么问题呢???
2020-06-15谢谢您的建议,我们会联系产品勾兑一下
微信支付 demo 尽快调试适配AndroidStudio可以吗?微信支付demo 做的真烂也不维护,还是五年前的版本,用的还是eclipse ,现在都用Android Studio,基本的跑demo 都要调半天,你们能不能上点心?
2020-06-15您好,可以添加一下我的好友进群沟通WePayTS7备注好问题原因
单品立减优惠无法使用,是什么原因?还有怎么检测后台是否支持商品透传?微信支付商户后台创建了单品立减的优惠活动,接口也完全按照官方文档对照着写了,包括goods_tag、goods_detail、version之类的参数都写了, 但是扫码支付时一直按原价付款,这是啥原因? 相同的代码对接全场券支付就没问题可以出现优惠信息,麻烦哪位大神给指导下,谢谢。
2020-06-15目前还在灰度,还没有上线,可以先使用V2的
微信支付V3文档缺失微信付款码支付?现有V3文档中https://pay.weixin.qq.com/wiki/doc/apiv3/wxpay/pay/transactions/chapter5_3.shtml 没有找到原来V2中的付款码支付 V2地址https://pay.weixin.qq.com/wiki/doc/api/micropay_sl.php?chapter=9_10&index=1
2020-06-15