【问题标题】:how to send a notification to millions of android devices in php using GCM如何使用 GCM 在 php 中向数百万个 android 设备发送通知
【发布时间】:2014-05-31 13:13:03
【问题描述】:

我是 Android 应用的新开发者。我正在使用 GCM 从 PHP 代码向 android 设备发送通知。我制作了所有设备 ID 的数组并发送,但问题是当我发送超过一千个设备时。我发现内部服务器错误。我的代码在下面

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;
}

请帮帮我

【问题讨论】:

    标签: php curl push-notification google-cloud-messaging


    【解决方案1】:

    您最多可以发送 1,000 个注册 ID。您需要将其分解为多个 curl 调用,每个调用包含 1k 个注册 ID 分组。

    function _send_notification($registration_ids = '', $message = '') {
        $url = 'https://android.googleapis.com/gcm/send';
        $groups = array_chunk($registration_ids, 1000);
    
        foreach($groups as $group) {
            $fields = array(
                'registration_ids' => $group,
                'data' => $message,
            );
            // ...
            // rest of your curl code
        }
    }
    

    【讨论】:

    • 谢谢...我正在这样做仍然存在超时问题。如果我减少到 250,那么它将起作用。但是如果我有超过 100 万的用户,那么就会出现同样的超时问题
    猜你喜欢
    • 2017-07-24
    • 2014-11-09
    • 1970-01-01
    • 1970-01-01
    • 2017-01-08
    • 1970-01-01
    • 2012-11-15
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多