parse.com:只获得100个结果

时间:2014-11-11 10:49:13

标签: parse-platform

我很想知道如何获取所有数据

我的代码是

   $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);

但我希望一次获得所有数据或者超过一百个数据

我该怎么做?

1 个答案:

答案 0 :(得分:1)

REST-API调用的默认限制是100个对象,但您可以为请求设置限制(1到1000之间的任何值)。

来自文档:

  

"您可以使用限制和跳过参数进行分页,限制   默认为100,但1到1000之间的任何内容都是有效限制。"

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