我在发送在视觉 api 中以 react-native 拍摄的照片的 Base64 后出现此错误,我在某些地方读到错误必须在 grpc 但是,我没有直接使用它,我只是在使用结构视觉 api 文本检测基础知识
const vision = require("@google-cloud/vision");
async function sendImage(base64) {
const client = new vision.ImageAnnotatorClient({
keyFilename: "**************",
});
const [result] = await client.textDetection({
image: {
content: base64,
},
});
const detections = result.textAnnotations;
return detections;
}
module.exports = sendImage;