1

我正在尝试通过在 jQuery 中使用 ajax 请求从 imgur 检索图片以显示在我的博客上

  $.ajax({
      type: "GET",
      url: "https://api.imgur.com/3/image/kvM6pxn.json",
      dataType: "jsonp",
      beforeSend: function(xhr) {
        xhr.setRequestHeader('Authorization', 'Client-ID <client-id>');
      },
      success: function(data) {
        console.log(data);
      }
    });

但我收到 401 未经授权的错误。谁能告诉我我做错了什么?谢谢

4

1 回答 1

1

Changing dataType from jsonp to json fixed it. Not really sure why though...

于 2013-08-25T13:22:35.170 回答