这是情况。使用下面的以下代码,使用Ajax连接到API。但是,我收到以下消息:
选项[URL] 404(未找到)
并在尝试连接到API时收到statusText:“错误”。
这是我当前正在使用的代码:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script type="text/javascript">
$.ajax({
url: "URL That I'm connecting to,
beforeSend: function(xhr) {
xhr.setRequestHeader("Content-Type", "application/json");
xhr.setRequestHeader("Accept", "application/json");
},
dataType: "json",
data: {
client_id: "",
client_secret: "",
grant_type: "client_credentials"
},
type: "POST",
success: function(response) {
token = response.access_token;
expiresIn = response.expires_in;
},
error: function(errorThrown) {
console.log(errorThrown);
}
});
</script>
任何帮助将不胜感激。
谢谢你, 凯文