So my server is no longer accepting formData however if I call with a string with all the parameters concatenated it works. So this WAS working before and now its not. So I set up my formData object and pass it in to a function that generates an $http.post() object:
function HTTPClient($http, $rootScope, arguments){
return $http.post($rootScope.URL, arguments,{
headers: {'Content-Type': 'application/x-www-form-urlencoded'}
});
}
But when I call
var_dump($_POST);
I get
array(0)
Why isn't this working anymore? I suspect its a change in our backend (I'm not the main server person) can someone help, our website is suddenly nonfunctional.