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."

[1] https://parse.com/docs/rest#queries-constraints


Comments

Popular posts from this blog

c++ - QTextObjectInterface with Qml TextEdit (QQuickTextEdit) -

javascript - angular ng-required radio button not toggling required off in firefox 33, OK in chrome -

xcode - Swift Playground - Files are not readable -