邮递员/休息客户端工作但通过角度应用程序

时间:2018-03-08 13:10:48

标签: angular rest

我正在尝试从Angular 5应用程序中的 https 端点获取数据。它需要添加到HttpHeaders的身份验证令牌,我使用HttpClient组件来发出get请求。

   const headers = new HttpHeaders({'Authorization': 'Bearer' + ' ' + this.token,
                                    'Content-Type':  'application/json'});
   this.http.get('https://some url', {
    headers : headers
   }).subscribe((res) => {
     console.log(res);
   }, (error) => {
     console.log(error);
   });

但是我收到以下错误:

enter image description here 我甚至尝试过使用CORS插件,但它不起作用。 401 是身份验证错误的指示器,但同样的令牌适用于邮递员和其他客户端。

有人可能指出我正确的方向吗?

1 个答案:

答案 0 :(得分:0)

云服务以某种方式拒绝角度应用程序中的选项。问题得到解决。