我正在尝试验证 Saber Api,但不确定为什么会收到错误“405:方法不允许”。这是代码。凭据是正确的。我把它们屏蔽掉了。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>
</head>
<body>
<script type="text/javascript">
$.ajax({
'url': 'https://api.sabre.com/v1/auth/token',
'data': 'grant_type=client_credentials',
'dataType': 'jsonp',
'type': 'post',
'headers': {'Authorization': 'Basic xxxxxxxxxxxxxxxxxxxxx:xxxxxxxx',
'Content-Type': 'application/x-www-form-urlencoded'
}
});
</script>
</body>
</html>