我试图简单地创建一个HTML网页,让我从用户输入的图像中获得情感。 使用Microsoft的文档我在下面创建了一个HTML文件:
<!DOCTYPE html>
<html>
<head>
<title>JSSample</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
</head>
<body>
<script type="text/javascript">
$(function() {
$.ajax({
url: "https://api.projectoxford.ai/emotion/v1.0/recognize",
beforeSend: function(xhrObj){
// Request headers
xhrObj.setRequestHeader("Content-Type","application/json");
xhrObj.setRequestHeader("Ocp-Apim-Subscription-Key","my-key");
},
type: "POST",
// Request body
data: {"url": "https://oxfordportal.blob.core.windows.net/emotion/recognition1.jpg"},
})
.done(function(data) {
alert("success");
})
.fail(function() {
alert("fail");
});
});
</script>
</body>
</html>
我的理解是,这应该可以在不需要服务器的情况下工作,但是,我总是会遇到“失败”的问题。加载网站的消息。 任何帮助都会有效,谢谢!
答案 0 :(得分:1)
使用我们(微软)在此处使用的API测试工具: https://dev.projectoxford.ai/docs/services/5639d931ca73072154c1ce89/operations/563b31ea778daf121cc3a5fa/console
确保您可以提出正确的请求,并且您实际上是在设置api密钥而不是发送我的密钥。
如果您的密钥无效,您将在javascript控制台中收到错误:“Access-Control-Allow-Origin”标头出现在请求的资源上。
如果您的密钥有效,但您的数据未转义,则会收到400错误请求错误。更新您的数据字段以包装''。在此处查看我的示例(填写您的密钥)http://jsfiddle.net/w3npr1ue
$(function() {
$.ajax({
url: "https://api.projectoxford.ai/emotion/v1.0/recognize",
beforeSend: function(xhrObj){
// Request headers
xhrObj.setRequestHeader("Content-Type","application/json");
xhrObj.setRequestHeader("Ocp-Apim-Subscription-Key","SetYourKey");
},
type: "POST",
// Request body
data: '{"url": "http://1.bp.blogspot.com/-dWka6rPeHZI/UL7newH9TnI/AAAAAAAAAQI/OfU3TW0dDBE/s220/Asa%2Band%2BDada%2Bin%2Bst.%2Bpetersburg%2BSmall.jpg"}',
})
.done(function(data) {
alert("success");
})
.fail(function(error) {
console.log(error.getAllResponseHeaders());
alert("fail");
});
});