我自己的开发微信号是可以正常访问的
wx.openBluetoothAdapter只用开发者的账号能成功调用,别的普通用户调用都失败?小程序的蓝牙功能wx.openBluetoothAdapter非开发者账号调用失败,提示“手机蓝牙功能没有打开,请到设置里打开蓝牙功能!”,手机和微信的蓝牙设置的正常。这是为什么? openBluetoothAdapter() { wx.openBluetoothAdapter({ success: (res) => { //console.log('openBluetoothAdapter success', res); setTimeout(this.startBluetoothDevicesDiscovery, 100); }, fail: (res) => { //console.log('openBluetoothAdapter fail', res); wx.showModal({ // title: '上报成功', // content: '亲爱的用户,我们已经收到您的上报信息,我们将安排人员检修,一经核实,我们将电话联系您进行酬谢', title: '注意', content: '手机蓝牙功能没有打开,请到设置里打开蓝牙功能!',
10-08设置不了,这是为什么,我有付费 [图片]
商户转账到零钱-后台基于安全需要提供一个IP地址-这个地址怎么设置 ?使用了云开发,接口的调用在云函商户转账到零钱-后台基于安全需要提供一个IP地址-这个地址怎么设置 ?使用了云开发,接口的调用在云函 在IP白名单不知道怎么配置
03-21你好,谢谢你的建议。我也想过这个方法,但是从log来看,这些过程好像没占多长时间,而是明显再开始调用requestpayment这个函数后,卡住了。 这些过程的延时时间有什么方法可以定量分析吗在小程序里?
服务商模式小程序云开发v3支付功能正常,但是需要5-6秒钟才能跳出支付窗口?问题:服务商模式。小程序通过云函数实现签名后得到了prepay_id,在小程序端用requestpayment拉起支付,支付的整个流程没有问题,能实现正确的支付。真机调试的时候,非常慢,在云函数传回预支付码后要等5到6秒才能跳出支付界面。而用云函数本地调试模式却非常快就能跳出支付界面,一秒内就出支付框。 不知道是哪里卡住了: wx.cloud.callFunction({ name: 'pay', data: { sub_mchid: that.data.sub_mchid, out_trade_no: that.data.outTradeNo,//"1217752501201407033233368318",//outTradeNo, description: "aaa", amount: { total: 1, }, }, success: res => { console.log('HTTP 请求成功') // 3 console.log('res.result.prepay_id',res.result.prepay_id) let nonceStr = that.getNonceStr() let timeStamp = parseInt(Date.now() / 1000) let paySign =sp_appid + "\n" + timeStamp + "\n" + nonceStr + "\n" + 'prepay_id='+ res.result.prepay_id + "\n" console.log('paySign=',paySign) console.log('res', res) var sign_rsa = new RSA.RSAKey(); sign_rsa = RSA.KEYUTIL.getKey(privatekeyStr); console.log('签名RSA:') console.log(sign_rsa) var hashAlg = 'sha256'; var hSig = sign_rsa.signString(paySign, hashAlg); hSig = RSA.hex2b64(hSig); // hex 转 b64 console.log("签名结果:" + hSig) wx.requestPayment ( { "timeStamp":timeStamp+'', "nonceStr": nonceStr, "package": "prepay_id="+res.result.prepay_id, "signType": "RSA", "paySign": hSig, "success":function(res){ console.log('调用支付接口成功', res) }, "fail":function(res){ console.log('调用支付接口fail', res) }, "complete":function(res){ console.log('调用支付接口完成', res) } } )
2023-03-28不好意思,已经搞定,把直连模式改成服务商模式了,把 Pre-request Script 改一下就可以,测试服务商模 式了.鹅长的文档是真烂 [图片]
Postman签名脚本 V3分服务商版和直连版吗你好,Postman签名脚本 服务商版有吗?
2023-03-25