401 Unauthorized error when accessing webapi from angular 401 Unauthorized error when accessing webapi from angular angularjs angularjs

401 Unauthorized error when accessing webapi from angular


I didn't realize you have to tell Angular to send your credentials to the server. I just had to change my API calls from:

$http.get(url);

to

$http.get(url, { withCredentials: true });