- 公众号中调用requestWxFacePictureVerify失败,是为什么呢?
bindingCard({healthCode, openId}).then(res => { if (res.code === 200) { const {name, idCard} = res.data getWxConfigParams({type: 'healthCard'}).then(res => { if (res.code === 200) { let configContent = res.data wx.config({ beta: true, // 必填,开启内测接口调用,注入 wx.invoke 和 wx.on 方法 debug: true, // 选填,开启调试模式,默认为 false 不开启 appId: configContent.appId, // 必填,公众号的唯一标识 timestamp: configContent.timestamp, // 必填,生成签名的时间戳 nonceStr: configContent.nonceStr, // 必填,生成签名的随机 signature: configContent.signature,// 必填,签名,详见微信 JS-SDK 说明文档 jsApiList: ['requestWxFacePictureVerify'] }); wx.ready(function () { wx.invoke('requestWxFacePictureVerify', { 'request_verify_pre_info': "{\"name\": \"" + name + "\", \"id_card_number\": \"" + idCard + "\"}", 'check_alive_type': 2, 'appid': configContent.appId }, function (res) { console.log('结果1', JSON.stringify(res)) if (res.err_code == 0) { var verify_identifier = res.verify_result; // 开发者选择是否使用后台文档获取本次认证的其他信息 } else { var ret = res.err_msg; ret += " err_code: " + res.err_code; alert(ret); } }); }) wx.error(function (res) { Toast.fail('微信js-sdk 配置失败:' + JSON.stringify(res)) console.log('结果1', JSON.stringify(res)) }) } }) } }) [图片][图片]
07-11 - 微信支付开通H5,但是提示支付域名不合法,是为什么呢?
申请H5支付,正常ICP备案信息可查,也申请了SSL证书,但是点提交一直校验不通过,提示“请检查输入的支付域名是否合法,这个该怎么解决呢 [图片] [图片]
03-22