我目前正在尝试Tango's testing console的API。但是,当我在该页面上打开浏览器的控制台并运行以下代码片段时,始终收到415错误响应。
$.ajax({
url: "https://integration-api.tangocard.com/raas/v2/customers",
type: "POST",
headers: {
'Accept': 'application/json',
'Authorization': 'Basic UUFQbGF0Zm9ybTI6YXBZUGZUNkhOT05wRFJVajNDTEdXWXQ3Z3ZJSE9OcERSVVlQZlQ2SGo='
},
data: {
"customerIdentifier": "dummy475",
"displayName": "dummy475"
},
success: function(response){
console.log(response);
}
});
授权和其他所有内容都很简单,我只是使用提供的示例数据。为什么我会收到此错误?
答案 0 :(得分:0)
它与邮递员配合良好。可能是标题中缺少Content-Type。
headers: {
'Content-Type': 'application/json'
},