带有用户名和密码的Angular HTTP Request

时间:2017-01-09 13:17:08

标签: javascript angularjs request httprequest

我试图在Angular中发出一个http请求,当我运行它时,我在控制台中获得了Unauthorized。但是如果我直接在浏览器(Chrome)中运行请求就可以了。有什么建议我可以纠正这个吗?

$scope.getStorage = function() {

$http.get('http://username:passsword@example.com/api/storageinfo').success(function(response) {
    console.log(response);
    }).error(function(error){
        console.log(error);
    });
};

$scope.getStorage();

-

GET http://example.com/api/storageinfo/api/storageinfo 401 (Unauthorized)

0 个答案:

没有答案