Angular $ http.get - 通过身份验证从url检索数据

时间:2017-02-03 00:13:21

标签: angularjs ajax authentication curl

在Angular中使用Ajax我想从需要身份验证的URL获取一些数据。用于在ajax之外获取此数据的curl命令是:

curl -u some_username:password'https://website.com'

enter image description here

这是我的功能:

function getCurlData() {

  window.btoa("some_username:password");
  return $http.get("https://website.com").success( function(data) {
   console.log(data); 
  }).catch(function() {
     console.log("failed");      
 });

然而,在使用此功能时,我收到403禁止消息。如何检索数据?

0 个答案:

没有答案