我想从Spotify API获取访问令牌,以下是我的请求:
this.http.post("https://accounts.spotify.com/api/token", {
headers: {
'Authorization' : "Basic " + CryptoJS.enc.Base64.stringify(CryptoJS.enc.Utf8.parse("ID:Secret")),
'Content-Type':'application/x-www-form-urlencoded'
},
params: {
grant_type : "authorization_code",
code : code,
redirect_uri : "REDIRECT URL"
}
}).subscribe(data => {
console.log(data)
})
字符串
我在控制台中得到这个错误:
“https://accounts.spotify.com/api/token的Http失败响应:415 OK
2条答案
按热度按时间sirbozc51#
我认为你必须先用参数创建一个
HttpParams
对象,比如:字符串
xxe27gdn2#
我知道这是一个古老的问题,但如果有人在寻找解决方案:
这是我最后的工作:
字符串