- orc的vehicleLicense,识别行驶证返回信息缺失?
ehicleLicense 返回的数据不包含备注和检验记录,这样无法记录行驶证的有效期以及检测是否过期[图片]
2020-04-30 - PC端什么时候能支持云函数调用?
目前PC端运行小程序不会调用云函数
2019-12-18 - ocr.comm云函数回调失败,找不到对应的错误码604100?
try { const result = await cloud.openapi.ocr.comm({ type: 'photo', imgUrl: event.url }) return result } catch (err) { return err } result: {errCode: -604100, errMsg: "system error: error code: -604100"}
2019-09-03 - 为什么云函数调用ocr.idcard一直返回报错?
url : http://tmp/wx8323d3c0cb12e113.o6zAJs5AgOgJC7-39jrX2Ap4YCyE.sBQIug6S1HlAd559b407b088f5164b7fb2f735d4b5e1.jpg 以下是按照官方文档的调用示例写的,但是结果一直返回失败,求助原因 if (action == "idcard"){ try { const result = await cloud.openapi.ocr.idcard({ type: 'photo', imgUrl: encodeURI(event.url) }) console.log(result) return result } catch (err) { console.log(err) return err } } 错误信息 result: {errCode: 101000, errMsg: "openapi.ocr.idcard:fail invalid image url hint: [zi_8cA04192347]"}
2019-09-02