我正在尝试使用基本身份验证发出get请求,以便从MailChimp读取列表。我确实使用Postman运行它,但不是在我的Angular2应用程序中运行。
这是我的要求:
this.http
.get(
`${this.MC_API_URL}/lists`,
{
headers: new Headers({
'Authorization': 'Basic ' + btoa('any:' + this.MC_API_KEY)
})
}
)
.subscribe(__response => log(__response.json()))
;
Chrome控制台会抛出501 Not implemented。
怎么了?