dpv21589 2017-10-23 09:51
浏览 60
已采纳

PHP和Curl:从多页卷曲请求中获取所有结果

I am trying to make a request to an API. The problem is if there are more than 50 records in the result set. The API will break down the result into 'pages' of 50 records each. I am trying to get a single array that has all the results before I save into the database. Below is my code:

<?
$url = 'http://developer-api.bringg.com/partner_api/users';

$data_string = array(
 'access_token' => "<YOUR ACCESS TOKEN>",
 'timestamp' => date('Y-m-d H:i:s'),
 'company_id' => <YOUR COMPANY ID>,
 'page' => 3 //this is the page key that needs to be specified
);

$secret_key = "<YOUR SECRET KEY>";

$signature = hash_hmac("sha1", http_build_query($data_string), 
$secret_key);

$data_string["signature"] = $signature;

$content = json_encode($data_string);

$ch=curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET");
curl_setopt($ch, CURLOPT_POSTFIELDS, $content);
curl_setopt($ch, CURLOPT_HTTPHEADER,
array('Content-Type:application/json',
'Content-Length: ' . strlen($content))
);

$json_response = curl_exec($ch);

$status = curl_getinfo($ch, CURLINFO_HTTP_CODE);

if ( $status != 200 ) {
 die("Error: call to URL $url failed with status $status, response 
   $json_response, curl_error " . curl_error($curl) . ", curl_errno " . 
curl_errno($curl));
}

curl_close($ch);

$response = json_decode($json_response, true);
?>

I can not know the number of records I have so I don't know how to dynamically change the page number. Is there a way I can do multiple requests and maybe change the page number with loops and then store all the results in one array. Please help, I am new to arrays and curl.

  • 写回答

1条回答 默认 最新

  • doulingqiu4349 2017-10-24 02:10
    关注

    make an array that holds all results you've recieved thus far.

    then start on the first page. fetch the results. merge the results of this fetch with the all results array. then increase the page by 1. now repeat that process, until you get zero results in a fetch. congratulations, you got all the results. basically

    $results = array ();
    while ( true ) {
        ++ $data_string ["page"];
        fetch ();
        if (empty ( $newResults )) {
            break; // zero results means we finished the last page, so break out of the loop.
        }
        array_push ( $results, $newResults );
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 对于相关问题的求解与代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 信号傅里叶变换在matlab上遇到的小问题请求帮助
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料
  • ¥15 使用R语言marginaleffects包进行边际效应图绘制