在Angular2中使用基本身份验证的HTTP get请求不起作用

时间:2016-06-22 21:24:09

标签: javascript angular get request http-basic-authentication

我正在尝试使用基本身份验证发出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

怎么了?

0 个答案:

没有答案