I've got a angular application that displays records, and gives the user the ability to add records.
Everything works perfect on desktop or iOS devices, but on android devices, the POST method fails(403 - forbidden).
this is the code in my service:
obj.getRecords = function() {
return $http.get(serviceBase + 'records');
};
obj.getRecord = function(id) {
return $http.get(serviceBase + 'record/' + id);
};
obj.saveRecord = function(record) {
return $http.post(serviceBase + 'record', record);
};
Anyone experienced with this problem?