【发布时间】:2020-09-14 00:23:54
【问题描述】:
我尝试刷新 Spotify 令牌,但服务器返回 400 错误。 我使用 angularjs 和打字稿
let httpParams = new HttpParams()
.append("grant_type", "refresh_token")
.append("refresh_token", token)
.append("client_id", my_client_id);
this.http.post("https://accounts.spotify.com/api/token", httpParams.toString(),
{ headers: {
'Content-Type':'application/x-www-form-urlencoded'
},}).subscribe(data => {
console.log(data['access_token'])
})
这是错误:
【问题讨论】:
标签: javascript angular typescript ionic-framework spotify