我在 JavaScript 中为 Microsoft Face API 使用牛津项目,当我使用“识别”功能时,我收到“无效的请求正文”。
client.face.identify({
faces: arrayFaceId,
personGroupId: "groupId",
maxNumOfCandidatesReturned: 1,
confidenceThreshold: 0.8
}).then(function(response){
console.log('Response ' + JSON.stringify(response.personId));
}, function(error){
console.log("Error2"+JSON.stringify(error));
});
任何人都知道我该如何解决它?