Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Does anyone knows, how I can integrate the new Google Cloud Messaging in a PHP backend?

share|improve this question
Elad Nova's answer worked. I've put into my website to test it out. anyone interested, can go : helmibaraja.com/gcm_demo.html – HelmiB Sep 17 '12 at 11:50
I've written a small OOP-library with an implementation of GCM-server. Hope it will help someone :) Check it on GitHub - github.com/CodeMonkeysRu/GCMMessage – iVariable Apr 22 at 8:36

7 Answers

This code will send a GCM message to multiple registration IDs via CURL.

If you receive an "Unavailable" error code when you try to send a GCM:

Generate a Browser API Key from the Google APIs Console, and use it instead of the server key in the "Authorization" header. Once you do that, this error will go away.

This is caused by a mistake in the GCM Documentation that states you should use a Server Key in the Authorization header (as written here)

// Replace with real BROWSER API key from Google APIs
$apiKey = "123456";

// Replace with real client registration IDs 
$registrationIDs = array( "123", "456" );

// Message to be sent
$message = "x";

// Set POST variables
$url = 'https://android.googleapis.com/gcm/send';

$fields = array(
                'registration_ids'  => $registrationIDs,
                'data'              => array( "message" => $message ),
                );

$headers = array( 
                    'Authorization: key=' . $apiKey,
                    'Content-Type: application/json'
                );

// Open connection
$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_POSTFIELDS, json_encode( $fields ) );

// Execute post
$result = curl_exec($ch);

// Close connection
curl_close($ch);

echo $result;
share|improve this answer
1  
Finally found a solution. Check my answer. – Elad Nava Jun 30 '12 at 16:23
for me both "Key for server apps" & "Key for browser apps" works as long as i dont add any filter in ip/referer – Vjy Jul 1 '12 at 13:05
1  
it's almost working here, but i dont receive any message on the phone. I want to debug it, but i dont know why my $result is always empty... – Sit Jul 5 '12 at 11:49
5  
Alright, i debugged with this line : if(curl_errno($ch)){ echo 'Curl error: ' . curl_error($ch); } This way i discovered the error : SSL3_GET_SERVER_CERTIFICATE:certificate verify failed fixed with adding thoses lines curl_setopt ($ch, CURLOPT_SSL_VERIFYHOST, 0); curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, 0); – Sit Jul 5 '12 at 12:21
3  
Thanks for this answer! I rolled it up into a PHP object framework if this is useful to anybody: github.com/kaiesh/GCM_PHP – Kaiesh Dec 20 '12 at 11:37
show 11 more comments

It's easy to do, the Curl code that's on the page that Elad Nava has put here works, Elad has commented about the error he's receiving. According to Google ( http://developer.android.com/guide/google/gcm/gcm.html#response )

String describing an error that occurred while processing the message for that recipient. The possible values are the same as documented in the above table, plus "Unavailable" (meaning GCM servers were busy and could not process the message for that particular recipient, so it could be retried).

I've got a service set up already that seems to be working (ish) and so far all I've had back are unavailable returns from Google. More than likely this will change soon.

To answer the question, use PHP, make sure the Zend Framework is in your include path, and use this code:

$url = 'https://android.googleapis.com/gcm/send';
$serverApiKey = "YOUR API KEY AS GENERATED IN API CONSOLE";
$reg = "DEVICE REGISTRATION ID";

$data = array(
        'registration_ids' => array($reg),
        'data' => array('yourname' => 'Joe Bloggs')
);




print(json_encode($data));

$client = new Zend_Http_Client($url);
$client->setMethod('POST');
$client->setHeaders(array("Content-Type" => "application/json", "Authorization" => "key=" . $serverApiKey));
$client->setRawData(json_encode($data));
$request = $client->request('POST');
$body = $request->getBody();
$headers = $request->getHeaders();
print("<xmp>");
var_dump($body);
var_dump($headers);

And there we have it. A working (it will work soon) example of using Googles new GCM in Zend Framework PHP

share|improve this answer
8  
MASSIVE UPDATE! Apparently using an API Key set with IP Restriction fails to work. I just swapped my API Key in the Server side to use the Key in the API Console called 'Key for browser apps (with referers)' And guess what! It went through. Here's what I had returned: {"multicast_id":8466657113827057558,"success":1,"failure":0,"canonical_ids":0,"‌​results":[{"message_id":"0:1341067903035991%921c249a66d6cf16"}]} – Roger Thomas Jun 30 '12 at 14:52
Yep, please read my answer above, it states this bug in GCM. – Elad Nava Jul 23 '12 at 16:35
1  
Its on and off now. I've got about 3500 messages a day going through it and so far no problems to report. – Roger Thomas Jul 23 '12 at 18:17
               <?php
               // Replace with real server API key from Google APIs  
                $apiKey = "your api key";    

                  // Replace with real client registration IDs
               $registrationIDs = array( "reg id1","reg id2");

              // Message to be sent
             $message = "hi Shailesh";

             // Set POST variables
            $url = 'https://android.googleapis.com/gcm/send';

           $fields = array(
           'registration_ids' => $registrationIDs,
             'data' => array( "message" => $message ),
            );
         $headers = array(
          'Authorization: key=' . $apiKey,
         'Content-Type: application/json'
          );

         // Open connection
              $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_POSTFIELDS, json_encode( $fields ) );

             curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
         //     curl_setopt($ch, CURLOPT_POST, true);
           //     curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
                curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode( $fields ));

                // Execute post
             $result = curl_exec($ch);

            // Close connection
               curl_close($ch);
             echo $result;
              //print_r($result);
               //var_dump($result);
           ?>
share|improve this answer
Thank you very much , this answer is the best one , it worked very well , vote up!!!! – Muhannad Jul 29 '12 at 8:50
Thanks a lot, it works fine for me.. – Sushil Kandola Sep 25 '12 at 9:50
Hi Shailesh Giri, its working fine by using Browser key,but in case of Server key, it shows Unauthorized Error 401. Can you help me please. – Sushil Kandola Sep 27 '12 at 10:31
what is the expected result from the server? I am not getting any response! also the device doesnt show up any message. – shiladitya Mar 10 at 6:50
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); is a big no-no. If, for some reason, your server running this PHP code can't verify the SSL certificate used by Google's servers, you can tell cURL what to verify with. Example: unitstep.net/blog/2009/05/05/… – Guillaume Boudreau Mar 20 at 17:52

After searching for a long time finally I am able to figure out what I exactly needed, Connecting to the GCM using PHP as a server side scripting language, The following tutorial will give us a clear idea of how to setup everything we need to get started with GCM

Android Push Notifications using Google Cloud Messaging (GCM), PHP and MySQL

share|improve this answer

I actually have this working now in a branch in my Zend_Mobile tree: https://github.com/mwillbanks/Zend_Mobile/tree/feature/gcm

This will be released with ZF 1.12, however, it should give you some great examples on how to do this.

Here is a quick demo on how it would work....

<?php
require_once 'Zend/Mobile/Push/Gcm.php';
require_once 'Zend/Mobile/Push/Message/Gcm.php';

$message = new Zend_Mobile_Push_Message_Gcm();
$message->setId(time());
$message->addToken('ABCDEF0123456789');
$message->setData(array(
    'foo' => 'bar',
    'bar' => 'foo',
));

$gcm = new Zend_Mobile_Push_Gcm();
$gcm->setApiKey('MYAPIKEY');

$response = false;

try {
    $response = $gcm->send($message);
} catch (Zend_Mobile_Push_Exception $e) {
    // all other exceptions only require action to be sent or implementation of exponential backoff.
    die($e->getMessage());
}

// handle all errors and registration_id's
foreach ($response->getResults() as $k => $v) {
    if ($v['registration_id']) {
        printf("%s has a new registration id of: %s\r\n", $k, $v['registration_id']);
    }
    if ($v['error']) {
        printf("%s had an error of: %s\r\n", $k, $v['error']);
    }
    if ($v['message_id']) {
        printf("%s was successfully sent the message, message id is: %s", $k, $v['message_id']);
    }
}
share|improve this answer
you are great man. hope this will worj for me. – tasomaniac Jul 5 '12 at 14:30
Ok! This is good. but how can I get the token of the users. I guess you are using tokens as registrationIDs. In my Android app, what will be the server URL? – tasomaniac Jul 6 '12 at 16:06
Yes tokens are the registration id's; this is specifically because the library attempts to remain somewhat abstract since it also implements APNS and MPNS. The server URL is whatever you end up making; this simply provides the glue for sending, you will need to write an area where you would post the registration id to and save it somewhere. From there you can utilize the above code to actually send a push notification to the app. – mwillbanks Jul 9 '12 at 12:54

Not PHP, but Drupal (well, it is PHP, so you can grab the module and re-use the code itself).
In case you need Drupal to work with GCM, here is my solution.

Hope this helps,
Shushu

share|improve this answer

Also you can try this peace of code, source:

<?php
define("GOOGLE_API_KEY", "AIzaSyCJiVkatisdQ44rEM353PFGbia29mBVscA");
define("GOOGLE_GCM_URL", "https://android.googleapis.com/gcm/send");

function send_gcm_notify($reg_id, $message) {

    $fields = array(
        'registration_ids'  => array( $reg_id ),
        'data'              => array( "message" => $message ),
    );

    $headers = array(
        'Authorization: key=' . GOOGLE_API_KEY,
        'Content-Type: application/json'
    );

    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, GOOGLE_GCM_URL);
    curl_setopt($ch, CURLOPT_POST, true);
    curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
    curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($fields));

    $result = curl_exec($ch);
    if ($result === FALSE) {
        die('Problem occurred: ' . curl_error($ch));
    }

    curl_close($ch);
    echo $result;
 }

$reg_id = "APA91bHuSGES.....nn5pWrrSz0dV63pg";
$msg = "Google Cloud Messaging working well";

send_gcm_notify($reg_id, $msg);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.