jQuery,如何使用授权格式化JSON请求?

时间:2018-11-08 19:03:50

标签: javascript jquery html json curl

我是JSON请求,cURL等的新手,而且我不知道如何使用授权正确格式化JSON请求。我试图调用Spotify API,他们建议使用cURL请求:

GET https://api.spotify.com/v1/search

curl -X "GET" "https://api.spotify.com/v1/search?q=tania%20bowra&type=artist" -H "Accept: application/json" -H "Content-Type: application/json" -H "Authorization: Bearer ReallyLongKey"

我不知道如何使用cURL和GET,所以我尝试使用ajax:

function Search() {
      $.ajax({
        url: 'https://api.spotify.com/v1/search?q=Muse&type=track%2Cartist&market=US&limit=10&offset=5',
        datatype: 'json',
        type: 'get',
        cache: false,
        success: function(Data) {
            //stuff
        }
    });
}

如何使用cURL或向ajax方法添加身份验证?提前致谢, 贾斯汀。

0 个答案:

没有答案