frieser/gcm

This package is abandoned and no longer maintained. No replacement package was suggested.

Endroid Google Cloud Messaging

1.2.3 2014-01-03 11:47 UTC

This package is not auto-updated.

Last update: 2016-08-30 07:58:14 UTC


README

By endroid

Build Status Latest Stable Version Total Downloads

Google Cloud Messaging is a service that helps developers send data from servers to their Android applications on Android devices. See Google GCM for more information.

Requests with messages targeting 1000+ registration ID's will automatically be chunked and sent in parallel in order to circumvent the maximum imposed by Google. So you don't have to bother about this restriction when using this class.

<?php

$gcm = new Endroid\Gcm\Gcm($apiKey);

// Registration ID's of devices to target
$registrationIds = array(
    ...
);

$data = array(
    'title' => 'Message title',
    'message' => 'Message body',
);

$success = $gcm->send($data, $registrationIds);

If something went wrong or if you just want to inspect the response objects returned by the GCM server, you can retrieve these using the getResponses() method.

Symfony

You can use EndroidGcmBundle to enable this service in your Symfony application.

License

This bundle is under the MIT license. For the full copyright and license information, please view the LICENSE file that was distributed with this source code.