如果有人可以在使用 Clarifai 人脸检测 API 时帮助我解决这个错误,我会非常感激
这是我使用的模型的代码:
app.models.predict( {
id: "a403429f2ddf4b49b307e318f00e528b",
version: "34ce21a40cc24b6b96ffee54aabff139",
}, this.state.input )
.then(
function(response) {
console.log(response.outputs[0].data.regions[0].region_info.bounding_box);
},
function(err) {
}
);
}
这是我从开发工具得到的错误
其中说: {"status":{"code":11103,"description":"Method not allowed","details":"Method Not Allowed"}}
我不知道如何调试这个,任何帮助表示赞赏。
谢谢