访问此资源需要401完整身份验证

时间:2016-04-01 11:59:11

标签: authentication get request

我正在尝试使用get请求从我的本地API服务器检索json数据。我总是收到这个错误。我已经访问过很多站点,但我找不到解决这个问题的方法。 有谁知道为什么以及如何解决它?如果需要更多配置信息,请告诉我,谢谢

import {Injectable} from 'angular2/core';
import {Http} from "angular2/http";
import 'rxjs/add/operator/map';
import 'rxjs/Rx';
import {Headers} from "angular2/http";
import {Jsonp} from "angular2/http";

@Injectable()
export class HTTPTestService{
    constructor(private _http: Http){}

 getCurrentTime(){

        console.log('je suis le test0');
        console.log(this._http.get('http://localhost:9090/webservices/pivot/rest/v1/cube/discovery').map(res  => res.json()));
        console.log('je suis le test10');
  return this._http.get('http://localhost:9090/webservices/pivot/rest/v1/cube/discovery')
            .map(res  => res.json());
    }
 postJSON(){
        var json=JSON.stringify({var1: 'test', var2: 3});
        var params = 'json=' + json;
        var headers = new  Headers();
        headers.append('Content-Type', 'application/x-www-form-urlencoded');
        return this._http.post('http://jsonplaceholder.typicode.com/posts',
            params,{
                headers: headers
            })
            .map(res => res.json());
    }
}

1 个答案:

答案 0 :(得分:2)

我找到了解决方案,我对标题进行了授权;它工作正常! 让我们在这里看到解决方案:

  getCurrentTime(){
        console.log('je suis le test0');
        var headers = new  Headers();
        headers.append('Authorization', 'Basic YWRtaW46YWRtaW4=');

        return this._http
            .get('http://localhost:9090/webservices/pivot/rest/v1/cube/discovery', {headers: headers})
            .map(res  => res.json().data);
    }