如何发送通知到数百万Android设备在php使用GCM [英] how to send a notification to millions of android devices in php using GCM

查看:157
本文介绍了如何发送通知到数百万Android设备在php使用GCM的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我是Android应用程式的新开发人员。我使用GCM发送通知从PHP代码到Android设备。我做了一个数组的所有设备ID和发送,但问题是当我发送超过一千个设备。我发现内部服务器错误。我的代码在下面

I am a new developer of Android app. I am sending notifications from PHP code to the android devices using GCM. I made an array of all device ids and send but the problem is when i send more than a thousand devices . I found internal server error. My code is below

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

请帮我。

推荐答案

您可以发送的注册ID数量上限为1,000。您需要将它分成多个curl调用,每个调用包含1k个注册ID。

The maximum number of registration ids you can send is 1,000. You'll need to break it into multiple curl calls with groupings of 1k registration ids each.

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

这篇关于如何发送通知到数百万Android设备在php使用GCM的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆