I am sending a post request with $http:
$http({
method: 'Post',
url: urlBuilt,
headers: {'Content-Type': 'application/json'},
params: {"colCode":modCodeCol,"whereClause":clause}
});
When the where clause is very huge, I am getting bad request 400 error. When the where clause contains a small string it works. How can we fix this.
whereClause???