Posts by Gabriel Cesar • 131 points
1 post
-
3
votes1
answer1207
viewsA: How to access a specific http header?
$http.post('/login', user).then(function(response) { var authorization = response.headers('Authorization'); }); With the headers() function you can access any of the header attributes.…