赞
踩
人脸核身功能有多种接入方式,其中包含微信H5、微信小程序、APP、独立H5、PC端、API接入6种方式。
我们的产品是使用uni-app来开发,所以第一时间考虑使用H5方式接入,但是通过与官方技术人员对接后得知,uni-app是有原生插件可以用的,所以可以使用app的方式接入,原生的插件方式接入会让用户体验更好,所以本文也是围绕着APP原生插件的方式接入。
添加官方技术人员微信(vx:faceid001),索要license,后面需要用到
uni-app插件市场添加人脸核身(DC-WBOCRService)和ocr识别插件(DC-WBOCRService)
至此,前期接入准备工作已经完成。
接口地址:https://idasc.webank.com/api/oauth2/access_token
参数:
app_id: _this.app_id,
secret: _this.secret,
grant_type: 'client_credential',
version: '1.0.0'
请求代码:
uni.request({ url: 'https://idasc.webank.com/api/oauth2/access_token', data: { app_id: _this.app_id, secret: _this.secret, grant_type: 'client_credential', version: '1.0.0' }, success(res) { _this.access_token = res.data.access_token; console.log(res.data); console.log('access_token:' + _this.access_token); }, fail(e) { console.log(e); }, complete() { } });
此处的grant_type和version为固定参数
响应结果:
{
"code":"0","msg":"请求成功",
"transactionTime":"20151022043831",
"access_token":"accessToken_string",
"expire_time":"20151022043831",
"expire_in":"7200"
}
接口地址:https://idasc.webank.com/api/oauth2/api_ticket
参数:
app_id: _this.app_id,
access_token: _this
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。