将curl命令转换为ajax请求/ javascript查询

时间:2015-09-06 13:58:33

标签: jquery ajax curl

我尝试将屏幕截图中的curl命令转换为ajax请求并返回错误消息表示存在无效参数

enter image description here

    $.ajax({
    url: "https://api.rrrrr.com/v1/authorization/token",
    beforeSend: function(xhr) { 
      xhr.setRequestHeader('emaxa', 'rOXFkGeerg87jL6D');
      xhr.setRequestHeader('Password', 'rOXFttyueg87jL6D');
    },
    type: 'POST',
    dataType: 'json',
    contentType: 'application/json',
    processData: false,
    data: '{"grant_type":"client_credentials"}',
  processData: false,
    success: function (data) {
      alert(JSON.stringify(data));
    },
    error: function(){
      alert("Cannot get data");
    }
});

我错过了什么?

0 个答案:

没有答案