I'd be really greatful if someone could assist me in this error while using Clarifai Face Detection API
This is the code for the model that I used :
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) {
}
);
}
This is the error that i got from dev tool
Which says : {"status":{"code":11103,"description":"Method not allowed","details":"Method Not Allowed"}}
I am not sure how to debug this, any help is appreciated.
Thanks