为一个请求设置 HTTP 标头

2022-08-30 02:29:27

我的应用中有一个需要基本身份验证的特定请求,因此我需要为该请求设置授权标头。我阅读了有关设置HTTP请求标头的信息,但据我所知,它将为该方法的所有请求设置该标头。我的代码中有这样的东西:

$http.defaults.headers.post.Authorization = "Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==";

但我不希望我的每个帖子请求都发送此标头。有没有办法只为我想要的一个请求发送标头?还是我必须在请求后将其删除?


答案 1

对于每个调用标头,您传递到的配置对象中有一个标头参数:$http

$http({method: 'GET', url: 'www.google.com/someapi', headers: {
    'Authorization': 'Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ=='}
});

或者使用快捷方式方法:

$http.get('www.google.com/someapi', {
    headers: {'Authorization': 'Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ=='}
});

有效参数的列表可在$http服务文档中找到。


答案 2

试试这个,也许它的工作原理;)

.factory('authInterceptor', function($location, $q, $window) {


return {
    request: function(config) {
      config.headers = config.headers || {};

      config.headers.Authorization = 'xxxx-xxxx';

      return config;
    }
  };
})

.config(function($httpProvider) {
  $httpProvider.interceptors.push('authInterceptor');
})

并确保你的后端也能正常工作,试试这个。我正在使用RESTful CodeIgniter。

class App extends REST_Controller {
    var $authorization = null;

    public function __construct()
    {
        parent::__construct();
        header('Access-Control-Allow-Origin: *');
        header("Access-Control-Allow-Headers: X-API-KEY, Origin, X-Requested-With, Content-Type, Accept, Access-Control-Request-Method, Authorization");
        header("Access-Control-Allow-Methods: GET, POST, OPTIONS, PUT, DELETE");
        if ( "OPTIONS" === $_SERVER['REQUEST_METHOD'] ) {
            die();
        }

        if(!$this->input->get_request_header('Authorization')){
            $this->response(null, 400);    
        }

        $this->authorization = $this->input->get_request_header('Authorization');
    }

}