- ORC识别英航卡号报错误?
wx.request({ // url:'https://api.weixin.qq.com/cv/ocr/bankcard?type=photo&img_url='+url+'&access_token='+token, url:'https://api.weixin.qq.com/cv/ocr/bankcard?type=photo&img_url='+Url+'&access_token='+token, method:'POST', success:function(res){ if(res.statusCode === 200 && res.data.errcode === 0) { wx.showToast({ title: res.data.name + '识别成功' }) } else { console.log("识别失败的原因",res.data) wx.showToast({ title: res.data.errmsg, icon:'error' }) } }, fail:function(error){ wx.showToast({ title: error }) console.log("请求失败返回的错误",error) } }) 这是我的api请求, url为上传服务器图片的url,token正确, 但它就是提示图片路径错误,有大佬指出代码哪里有错误吗,还是url位置放错了 url 在浏览器中可以打开
06-19 - 调用银行卡识别api接口时,报48001?
errcode: 48001, errmsg: "api unauthorized rid: 66713b2f-4f496690-67f489f1"}errcode: 48001errmsg: "api unauthorized rid: 66713b2f-4f496690-67f489f1"这是报错信息,但是token获取的是正确的 找不到原因 求助大佬
06-18