I'm trying to get some data with parse by using the REST API in Javascript.
All works well until I try to add a limit and an offset ("skip").
Here, there is the doc to use the parameters with a REST API but only with curl or python. With this post I try to do something like this :
$http.post('https://api.parse.com/1/functions/expressions', option, {
headers: {
'X-Parse-Application-Id': 0123456789,
'X-Parse-REST-API-Key': 9876543210,
'Content-Type':'application/json'
},
params: {
'limit': limitValue,
'skip': skipValue
}
});
But this only return me the 10th first result even when I increment the skip param.
Does someone have an idea to use this parameters in javascript ?