I\'m trying to add the \'Authorization\' header containing a token for future HTTP request. Retrieval of the token seems to be fine however when making a get request it fails wi
Try adding this in your config block and set the token in your rootscope
$httpProvider.interceptors.push({ request: function (config) { config.headers.Authorization = $rootScope.token; return config; } })