donglian7879 2014-07-11 04:41
浏览 29
已采纳

从PHP向数百万台设备发送通知

I have more than 1 millions of devices with a token . I want to send notification to all of the devices without a time out. I have a the php code but it only sends to 300 devices before timing out.

function _send_notification($registatoin_ids = '', $message = '') {
$url = 'https://android.googleapis.com/gcm/send';
$fields = array(
    'registration_ids' => $registatoin_ids,
    'data' => $message,
);
//pr($fields);
$headers = array(
    'Authorization: key=' . $this->GOOGLE_API_KEY,
    'Content-Type: application/json',
    'Connection: keep-alive',
    'Keep-Alive: 300'
);
$ch = curl_init();
// Set the url, number of POST vars, POST data
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
//curl_setopt($ch, CURLOPT_CONNECT_ONLY, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, 10000); // drop connection after 10000 seconds
// Disabling SSL Certificate support temporarly
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($fields));
// Execute post
$result = curl_exec($ch);
if ($result === FALSE) {
    die('Curl failed: ' . curl_error($ch));
}
// Close connection
curl_close($ch);
return $result; //exit;
}

Please help me out

  • 写回答

3条回答 默认 最新

  • dsy48837 2014-07-11 04:52
    关注

    Add this just after starting funciton

    set_time_limit (0);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 想问一下树莓派接上显示屏后出现如图所示画面,是什么问题导致的
  • ¥100 嵌入式系统基于PIC16F882和热敏电阻的数字温度计
  • ¥15 cmd cl 0x000007b
  • ¥20 BAPI_PR_CHANGE how to add account assignment information for service line
  • ¥500 火焰左右视图、视差(基于双目相机)
  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号