1

私はコンピュータ ビジョン Api を使用しており、ノード js を使用して url から ocr microsoft コグニティブ サービスに画像を投稿しようとしていますが、

{"code":"InvalidImageUrl","requestId":"a4c68f18-37c1-484d-a044-2f89df963915","message":"Can't fetch the image."}

これは私の取得および投稿コードです

http.get(url.parse(imageUrl), function (res) {
    res.on('data',function (body) {
        console.log('data from get '+body);
      })    
    res.on('end', function () {


        request.post({
            headers: {                    
                'Ocp-Apim-Subscription-Key': proccess.env.SUBSKEY
            },
            url: 'http://api.projectoxford.ai/vision/v1.0/ocr?language=unk&detectOrientation=true',
            encoding: 'binary',
            formdata:{
                file:res
            }
        }, function (error, response, body) {
            if(error)
            {
                console.log(error);
            }
            console.log('data from post '+body);
        });
    });
});

また、ボットビルダーを使用しています

4

1 に答える 1