Hi Danijel,
sorry to bother you with this, but I'm a bit lost.
I want to talk to the google CGM, but all I find is a php call
curl_setopt($Request, CURLOPT_URL, 'https://gcm-http.googleapis.com/gcm/send');
curl_setopt($Request, CURLOPT_POST, 1);
curl_setopt($Request, CURLOPT_HTTPHEADER, array('Content-Type: application/json', 'Authorization:key=' . <<my server="" api="" key="">>));
curl_setopt($Request, CURLOPT_POSTFIELDS, {"registration_ids" : ["' . <<device token="">> . '"],"data":{"message":"My message","title":"My title"}});
curl_setopt($Request, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($Request, CURLOPT_RETURNTRANSFER, true);
$Response = curl_exec($Request);
I guess, RTC has no problem, to do the same and less cryptic
But I don't even know where to begin such a request... and how to put fields and everything.. any hint ?
thanks, Helge