赞
踩
快速验证组件其实就是最开始的获取手机号码组件,调用流程比较复杂,需要wx.login,然后再使用encryptedData和iv得到手机号。新版本的也还能继续使用这种,但同时也增加了一个code(基础库从2.21.2开始),可以直接用code而忽略encryptedData和iv。
所以,建议基础库直接选择2.21.2或者以上的,这样实时和快速的两种能统一处理掉。
基础库版本修改位置: 开发者工具右上角的详情->本地设置->修改调试基础库
后端代码非常简单,根据code来得到手机号,进行自己业务的逻辑,为了方便查看,我把响应值直接返回给小程序了,真实业务自行调整成保存数据库或者其他逻辑。
获取access_token,这个是小程序的,appid和secert可通过小程序后台获取到。access_token的有效期是2小时,可以做成个定时任务。
public void runmicro(){
log.info("进入获取micro accessToken 定时任务");
try {
String url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=" + Cons.APPID_MICRO + "&secret=" + Cons.SECRET_MICRO;
String result = Jsoup.connect(url).ignoreContentType(true).method(Connection.Method.GET).execute().body();
log.info(result);
Cons.accessTokenMicro = JSON.parseObject(result).getString("access_token");
} catch(Exception e) {
e.printStackTrace();
}
}
有了access_token,就可以正常获取手机号码了。
其中,requestBody中参数格式必须是code:codeValue,我直接限制小程序按照这个格式传递了,没有做合法校验。
@PostMapping("/mobile")
@Log("查询手机号码")
@ApiOperation("查询手机号码")
@AnonymousAccess
public ResponseEntity<JSONObject> mobile(@RequestBody JSONObject param){
try {
System.out.println(param.toString());
String url = "https://api.weixin.qq.com/wxa/business/getuserphonenumber?access_token=" + Cons.accessTokenMicro;
String result = Jsoup.connect(url).method(Connection.Method.POST).ignoreContentType(true).ignoreHttpErrors(true).requestBody(param.toString()).execute().body();
return new ResponseEntity<>(JSON.parseObject(result),HttpStatus.OK);
} catch(Exception e) {
e.printStackTrace();
}
return new ResponseEntity<>(HttpStatus.OK);
}
使用了weui样式。这个无所谓,根据个人喜好了。
在wxss中进行引入
@import "/pages/style/weui.wxss";
在wxml中写两个按钮,测试两个获取手机号。其中实时组件的open-type是getRealtimePhoneNumber,同时通过bindgetrealtimephonenumber来指定获取到以后调用的方法;快速组件的open-type是getPhoneNumber,同时通过bindgetphonenumber来指定获取到以后调用的方法。
<page-meta root-font-size="system"/>
<view class="page" data-weui-theme="{{theme}}" data-weui-mode="{{mode}}">
<view class="page__bd">
<view class="weui-cells__title">手机号实时验证组件</view>
<view class="weui-cells weui-cells_after-title">
<view aria-labelledby="js_cell_l1_bd" class="weui-cell weui-cell_access" hover-class="weui-cell_active">
<button type="primary" style="width: 100%;" open-type="getRealtimePhoneNumber" bindgetrealtimephonenumber="getrealtimephonenumber" >获取手机号(实时)</button>
</view>
</view>
<view class="weui-cells__title">手机号快速验证组件</view>
<view class="weui-cells weui-cells_after-title">
<view aria-labelledby="js_cell_l1_bd" class="weui-cell weui-cell_access" hover-class="weui-cell_active">
<button type="primary" style="width: 100%;" open-type="getPhoneNumber" bindgetphonenumber="getPhoneNumber" >获取手机号(快速)</button>
</view>
</view>
<view class="weui-cells__title" style="padding-top: 30px;">手机号实时验证组件,在每次请求时,平台均会对用户选择的手机号进行实时验证。每次组件调用成功,收费0.03元。
</view>
<view class="weui-cells__title" >手机号快速验证组件,平台会对号码进行验证,但不保证是实时验证。每次组件调用成功,收费0.04元。</view>
</view>
</view>
因为两种获取手机号的方式都是统一的通过code,所以在js中写个公共的方法,都可以直接调用。url是上面后台部署好的地址。
mobileRequest: function(code) {
wx.request({
url: 'https://eladmin.luotayixing.com/api/wechat/mobile',
method: 'POST',
data: {
code: code
},
header: {
'content-type': 'application/json'
},
success (res) {
wx.showModal({
title: '返回结果',
content: JSON.stringify(res.data),
showCancel: false,
success (res) {
}
})
}
})
},
上面两个组件的事件回调方法比较简单,都是直接把code拿到。
这里需要增加下判断,比如用户点击了取消不要调用,其他出错情况不要调用等。我为了方便偷懒了。
getrealtimephonenumber (e) {
this.mobileRequest(e.detail.code)
},
getPhoneNumber (e) {
this.mobileRequest(e.detail.code)
},
官方给出的几个参数可以用,比如errno来判断是否失败了。
console.log(e.detail.code) // 动态令牌
console.log(e.detail.errMsg) // 回调信息(成功失败都会返回)
console.log(e.detail.errno) // 错误码(失败时返回)
可以通过公众号“洛塔志达服务”进行联系,发送“微信”,可添加好友沟通。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。