[图片] 执行开启人脸识别检测,为什么支持模式只'指纹识别' 而且执行 wx.checkIsSoterEnrolledInDevice 报错
微信有没有类似实名认证、人脸识别的接口?做的政务类项目需要用户实名认证,微信官方有没有可以调用的实名认证的接口
03-27请问微信订阅号,有wx-open-launch-weapp标签权限?
wx-open-launch-weapp 按钮显示不出来,怎么回事?<wx-open-launch-weapp id="launch-btn" username="gh_1ac06b5a8f4e" path="/pages/index/index?cityCode=4401&ysschannel=2019DSGZHCDL_61034_gz"> <template> <style> .btn { padding: 12px } </style> <button class="btn">打开小程序</button> </template> </wx-open-launch-weapp> $().ready(function () { var url = location.href; $.ajax({ url: "../api/UEditor/GetSignature",//后台给你提供的接口 data: { "url": url }, success: function (data) { var datad = JSON.parse(data); //转译为Json字符串 wx.config({ debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来 appId: datad.appid, // 必填,公众号的唯一标识 timestamp: datad.timestamp, // 必填,生成签名的时间戳 nonceStr: datad.noncestr, // 必填,生成签名的随机串 signature: datad.signature,// 必填,签名,见附录1 jsApiList: ["scanQRCode"], // 必填,需要使用的JS接口列表,所有JS接口列表见附录2 openTagList: ["wx-open-launch-weapp"] }); wx.error(function (res) { layer.msg(res); }); }, error: function (error) { layer.msg(error) } }); })
2023-12-14