在本地主机上通过AngularJS通过简单的API调用获取401、403

时间:2019-06-15 21:20:21

标签: angularjs rest api spotify-app

我有一个Napster开发人员帐户。而且,我制作了一个应用程序,并获得了一个api密钥。 According to Napster documents这是我作为UP请求通过UPC发送的内容。

function getByUpc() {
    console.log("getByUpc is called ...");
    return $http({
        method: 'GET',
        url: 'http://api.napster.com/v2.2/albums/upc/602498619070',
        headers: {
            'Authorization': 'BASIC my-apikey'
        }
    }).then(handleSuccess, handleError('Error getting user by id'))
}

我将BASIC更改为Bearer,但我也得到了相同的结果(401错误)。 另外,I tried to put apikey as a query string但出现403错误。 有什么建议吗?

http://api.napster.com/v2.2/albums/upc/602498619070?apikey=MY-APIKEY 

0 个答案:

没有答案