所以我正在努力向Emotion API for video发布视频,但我还没有得到回复。
我已经能够在Microsoft online console上使用它了,但当我尝试使用(1)JavaScript Ajax或(2)Ruby服务器端在我的Rails应用程序中实现它时代码,我一直都会遇到各种错误。
这是我的代码。起初我尝试使用Ajax方式,但我怀疑API没有启用CORS。所以我尝试了Ruby,但没有成功。
Ruby尝试:
def index
uri = URI('https://api.projectoxford.ai/emotion/v1.0/recognizeinvideo')
uri.query = URI.encode_www_form({
})
data = File.read("./public/mark_zuck.mov")
request = Net::HTTP::Post.new(uri.request_uri)
# Request headers
request['Ocp-Apim-Subscription-Key'] = 'e0ae8aad4c7f4e33b51d776730cff5a9'
# Request body
request.body = data
request.content_type = "video/mov"
response = Net::HTTP.start(uri.host, uri.port, :use_ssl => uri.scheme == 'https') do |http|
http.request(request)
end
puts response.body
end
这是我的Ajax尝试:
function CallAPI(apiUrl, apiKey){
console.log("API called");
$(".loading").css("display", "inline-block");
$.ajax({
url: apiUrl,
beforeSend: function (xhrObj) {
xhrObj.setRequestHeader("Content-Type", "application/octet-stream");
xhrObj.setRequestHeader("Ocp-Apim-Subscription-Key", apiKey);
},
type: "POST",
data: '{"url": "http://localhost:5000/mark_zuck.mov"}',
processData: false,
success: function(response){
console.log("API success");
ProcessResult(response);
$(".loading").css("display", "none");
console.log(response);
},
error: function(error){
console.log("API failed");
$("#response").text(error.getAllResponseHeaders());
$(".loading").css("display", "none");
console.log(error);
}
})
是的,我已经重新生成了我的钥匙。这只是为了说明我的观点。
答案 0 :(得分:0)
所以你必须将Content-Type
设置为application / octet-stream,如果它是你发送的二进制文件,就像我一样。
如果您使用网址,则应将Content-Type
设置为application / json,并且网址必须公开。