创建商家券可参考上述链接
现在该怎么创建商家现金券?现在该怎么创建商家现金券???
2021-04-21返回 "微信用户” 是官方改版了,要看公告。。。 小程序登录、用户信息相关接口调整更新说明
java对加密数据(encryptedData) 进行对称解密返回的部分数据有问题{"country":"","watermark":{"appid":"","timestamp":1618997042},"gender":0,"province":"","city":"","avatarUrl":"https://thirdwx.qlogo.cn/mmopen/vi_32/POgEwh4mIHO4nibH0KlMECNjjGxQUq24ZEaGT4poC6icRiccVGKSyXwibcPq4BWmiaIGuG1icwxaQX6grC9VemZoJ8rg/132","openId":"","nickName":"微信用户","language":""}
2021-04-21没有这样的接口;不过,可以在公众号MP平台->微信支付->里查询到“部分”微信支付商户号。
如何通过小程序或者公众号的Appid获取支付商户号?请问有这种接口?直接根据Appid获取到支付商户号?
2021-04-21谢邀,这个问题俺也不会,代你查了下文档: https://developers.weixin.qq.com/community/business/doc/000442d352c1202bd498ecb105c00d 表1:checkAliveType的值和对应的解释: 2 | 先检查是否可以屏幕闪烁,不可以则自动为读数字。 据此推断,2的时候,手机支持闪烁就闪烁,不支持才是读数字。
人脸识别 调试的过程中,发现传送参数0、1、2均为屏幕闪烁,无法调用读数。应该怎么处理?"libVersion": "2.14.1", 手机华为荣耀20 代码: wx.checkIsSupportFacialRecognition({ checkAliveType: 0,//屏幕闪烁(人脸核验的交互方式,默认0,读数字) success: function (res) { if (res.errCode === 0 || res.errMsg === "checkIsSupportFacialRecognition:ok") { //调用人脸识别 that.facialRecognitionVerify(that.data.formData.name.replace(/(^\s*)|(\s*)$/g, ""), that.data.formData.idcard); //身份证名称,身份证号码 return; } wx.showModal({ title: '提示', showCancel: false, content: "微信版本过低,暂时无法使用此功能,请升级微信最新版本!", success: function (res) {} }); }, fail: function (res) { wx.showModal({ title: '提示', showCancel: false, content: "微信版本过低,暂时无法使用此功能,请升级微信最新版本!!" , success: function (res) {} }); }, complete:function(res){ console.log("complete:",res) } }) wx.startFacialRecognitionVerify({ checkAliveType: 0,//屏幕闪烁(人脸核验的交互方式,默认0,读数字) name: name, //姓名 idCardNumber: idCardNumber, //身份证号 //人脸识别成功回调通知 success: function (res) { var verifyResult = res.verifyResult; if (res.errCode === 0 || 'startFacialRecognitionVerify:ok' == res.errMsg) { wx.showModal({ title: '提示', showCancel: false, content: "验证成功", success: function (res) { } }); } else { wx.showModal({ title: '提示', showCancel: false, content: "人脸识别失败!", success: function (res) {} }); } }, //人脸识别失败的回调通知 fail: function (res) { console.log(res) wx.showModal({ title: '提示', showCancel: false, content: "人脸识别失败!" + res.errMsg, success: function (res) { } }); }, complete:function(res){ console.log("complete:",res) } });
2021-04-17https://pay.weixin.qq.com/wiki/doc/api/micropay.php?chapter=9_4 文档在如上,上面米有op_user_id, reason, sing。sing应该是拼写错误了吧
微信退款参数正常确返回了缺少参数微信申请退款参数都是按照手册传的,证书也正确但是还是给返回了缺少参数 调用接口https://api.mch.weixin.qq.com/secapi/pay/refund 请求参数为: <xml> <appid> <![CDATA[wx7f2421541006**]]> </appid> <mch_id>1608****0</mch_id> <nonce_str> <![CDATA[iQ0ddQota9dfXEdHGwa5tD1NJqlzEtBs]]> </nonce_str> <op_user_id>8888</op_user_id> <out_refund_no> <![CDATA[T20210416153****588]]> </out_refund_no> <refund_fee>3</refund_fee> <total_fee>3</total_fee> <transaction_id>4200000992202104***82</transaction_id> <reason> <![CDATA[退回]]> </reason> <sing> <![CDATA[CD028852F3D15F6CF45**5F855C41]]> </sing> </xml> 接口返回值为: <pre>Array ( [return_code] => FAIL [return_msg] => 缺少参数 )
2021-04-17「微信提现到银行卡」一直就能用,感觉你是想开通「企业付款至银行卡」,如果是这个,那没捷径,要求必须「已入住90天且连续交易30天」。
微信提现到银行卡提示 当前商户号暂时无法开通此功能当前商户号暂时无法开通此功能。请保持健康交易,遵守《微信支付服务协议》及《微信支付商户平台使用协议》,后续尝试开通。已入住90天且连续交易30天
2021-04-16对外收款是企业微信提供的面向微信用户使用的收款方式,可以在聊天中、用收款码、在直播间、使用商品图册等多种方式收款。
企业微信开发第三方应用可以调用jsapi支付吗?或者说支持公众号支付吗?企业微信开发第三方应用可以调用jsapi支付吗?或者说支持公众号支付吗?
2021-04-16参考 Asp.Net Core3.1 微信支付、退款v3 JSAPI 可能的后端写法是: requestContent.Headers.ContentType.MediaType = "application/xml";
request 能否发送 contentType为 application/xml 的 xml格式?接口.NET写的,参数需要xml格式,contentType 为 application/xml形式,如何实现?????
2021-04-16后端接口返回的预支付单号,需要二次签名给到小程序,你这个场景应该是把后端参数直接给小程序了,肯定签名失败。
支付失败,请稍后再试?[图片] 发送参数如下: { "body": "小程序【博礼云商荟】-订单号:2021041653485310", "out_trade_no": "2021041653485310", "total_fee": 342, "notify_url": "https:\/\/www.miniappss.com\/miniProgram\/payMent\/WeChatPayNotify\/applet_id\/247", "trade_type": "JSAPI", "openid": "ovJK95euqlSF9PMBtH3BLTJwkwC4" }
2021-04-16建议按照返回值的建议,主动尝试撤销(有可能撤销失败),安全
刷卡消费,用户的钱被扣款了,微信返回:“支付失败,请撤销订单”,这种不撤销,钱会返回给用户么?具体报文: 获取到的响应报文:[<?xml version="1.0" encoding="UTF-8" standalone="no"?> <xml> ********************** <return_code><![CDATA[SUCCESS]]></return_code> <return_msg><![CDATA[成功]]></return_msg> <result_code><![CDATA[SUCCESS]]></result_code> <trade_state><![CDATA[PAYERROR]]></trade_state> <trade_state_desc><![CDATA[支付失败,请撤销订单]]></trade_state_desc> <out_trade_no><![CDATA[202104151972416132]]></out_trade_no> <nonce_str><![CDATA[***********]]></nonce_str> <sign><![***********]]></sign> </xml> ]
2021-04-16