parse.com: fetching only 100 results -
i'm struggling knowing how data
my code
$headers = array( "x-parse-application-id: $app_id" , "x-parse-rest-api-key: $rest_id" , "x-parse-master-key : $master_id ", "content-type: application/json", ); $ch = curl_init($url); curl_setopt($ch,curlopt_url,$url); curl_setopt($ch, curlopt_httpheader, $headers); curl_setopt($ch,curlopt_returntransfer, true); $response = curl_exec($ch); $parse_data=json_decode($response,true); print_r($parse_data);
but want data @ once or more hundred data
how can ?
the default limit rest-api calls 100 objects can set limit request (anything between 1 , 1000).
from docs:
"you can use limit , skip parameters pagination, limit defaults 100, 1 1000 valid limit."
Comments
Post a Comment