В настоящее время я могу использовать URL для моего classifyImage URL, но вместо этого я хочу использовать base64string.Но когда я попробовал это, я получил сообщение об ошибке BadRequestImageFormat.что я могу сделать?
app.post('/predict', function(req, res){
const predictionKey = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxx";
const endPoint = "https://southcentralus.api.cognitive.microsoft.com"
const projectId = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxx";
const publishedName = "AntiScam";
const PredictionApiClient = require("azure-cognitiveservices-customvision-prediction");
const predictor = new PredictionApiClient(predictionKey, endPoint);
var data2 = req.body.img;
tempData={ url: data2 };
predictor.classifyImageUrl(projectId, publishedName, tempData)
.then((resultJSON) => {
console.log("RESULT ######################")
console.log(resultJSON);
res.send(resultJSON);})
.catch((error) => {
console.log("ERROR #####################");
console.log(error);}
);
});