I saw that to set the 'Authorization' field of the header with Angular is used:
$http.defaults.headers.common.Authorization = "Bearer " + token
or
$http.defaults.headers.common.Authorization = "Basic " + token
What's the difference between 'Bearer' and 'Basic'? And why when I go to make the request via Postman I do not have to concatenate the token with either?