I'm having trouble making a GET request, getting error 415 (Unsupported Media Type).
Although he has already set the headers he does not seem to respect them.
Does anyone have any suggestions on what to do to solve the problem? Remembering I'm new to AngularJS
$http.get('https://minhaurl.com.br/api/v1/tasks',
{
headers: {
'Accept': 'application/json; charset=utf-8',
'Content-Type' : 'application/json; charset=utf-8'
}
}
);