Skip to content

xczimi/Gcm

 
 

Repository files navigation

Endroid Google Cloud Messaging

Build Status

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 GcmBundle to enable this service in your Symfony applications.

About

Endroid Google Cloud Messaging

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 69.1%
  • Perl 29.4%
  • JavaScript 1.5%