Is there a way to set the $httpProvider headers outside of angular.module(\'myApp\', []).config()?
$httpProvider
angular.module(\'myApp\', []).config()
I\'m getting an Auth-Token from the serv
$http.defaults.headers.common['Auth-Token'] = 'token';
It seems headers() normalizes the key names.
headers()