I'm doing a post in angularjs and realized that my API is not working because angular is saying it's sending data via post, but it's actually all sending as a get
$http({
url:'some_url/',
method:'POST',
params:{"table":"users", "info":info},
headers:{'Content-Type':'application/x-www-form-urlencoded'}
}).success(function(data){
console.log(data)
})
The browser tells me its being sent as a post, but the url being sent has all the information in it as a get would