Does anyone knows, how I can integrate the new Google Cloud Messaging in a PHP backend?
|
|
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)
|
|||||||||||||||||||
|
|
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:
And there we have it. A working (it will work soon) example of using Googles new GCM in Zend Framework PHP |
|||||||||||
|
|
|||||||||||
|
|
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 |
|||
|
|
|
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....
|
|||||||
|
|
Not PHP, but Drupal (well, it is PHP, so you can grab the module and re-use the code itself). Hope this helps, |
|||
|
|
|
Also you can try this peace of code, source:
|
|||
|
|