Vous pouvez utiliser les en-têtes par défaut pour angular 1.0.x :
$http.defaults.headers.common['Authentication'] = 'authentication';
ou intercepteur de requête pour angular 1.1.x+ :
myapp.factory('httpRequestInterceptor', function () {
return {
request: function (config) {
// use this to destroying other existing headers
config.headers = {'Authentication':'authentication'}
// use this to prevent destroying other existing headers
// config.headers['Authorization'] = 'authentication';
return config;
}
};
});
myapp.config(function ($httpProvider) {
$httpProvider.interceptors.push('httpRequestInterceptor');
});
Comme les fabriques/services sont des singletons, cela fonctionne tant que vous n'avez pas besoin de modifier dynamiquement votre valeur d'authentification après l'instanciation du service.