現在、classifyImage URL に 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);}
);
});