对videoindexers v2
API进行AJAX调用会导致操作前选项返回404 。
那么,您应该如何使用API?
官方示例也不起作用https://api-portal.videoindexer.ai/docs/services/authorization/operations/Get-Account-Access-Token?
我尝试使用基本的ajax(如示例中所示)和axios。
<script type="text/javascript">
$(function() {
var params = {
// Request parameters
"allowEdit": "{boolean}",
};
$.ajax({
url: "https://api.videoindexer.ai/auth/{location}/Accounts/{accountId}/AccessToken?" + $.param(params),
beforeSend: function(xhrObj){
// Request headers
xhrObj.setRequestHeader("Ocp-Apim-Subscription-Key","{subscription key}");
},
type: "GET",
// Request body
data: "{body}",
})
.done(function(data) {
alert("success");
})
.fail(function() {
alert("error");
});
});
先谢谢了,
粉红头盔