我正在使用Parse向我的iOS应用用户发送推送通知。这很好用,但是我构建它的方式导致向许多用户发送推送时的页面超时。
下面的代码是一个while循环,它通过curl一次发送一个设备令牌数据。我将如何重建有效负载,以便我可以推送一个包含所有设备令牌等的JSON数组......任何想法?
My While Loop:
$target_device = $row['device_token'];
$push_payload = json_encode(array(
"where" => array(
"deviceToken" => $target_device,
),
"data" => array(
"alert" => "$message"
)
));
$rest = curl_init();
curl_setopt($rest,CURLOPT_URL,$url);
curl_setopt($rest,CURLOPT_PORT,443);
curl_setopt($rest,CURLOPT_POST,1);
curl_setopt($rest,CURLOPT_POSTFIELDS,$push_payload);
curl_setopt($rest,CURLOPT_HTTPHEADER,
array("X-Parse-Application-Id: " . $appId,
"X-Parse-REST-API-Key: " . $restKey,
"Content-Type: application/json"));
$response = curl_exec($rest);
答案 0 :(得分:0)
使用set_time_limit(0);
,以便您的网页不会超时。
您还尝试使用curl_milti
进行并行卷曲请求。但如果请求太多,它将无法帮助您避免超时。