Bunu yapmanın çok kolay bir yolunu buldum.
Http://phpfiddle.org/ adresini açın.
Aşağıdaki php komut dosyasını kutuya yapıştırın. Php betik setinde API_ACCESS_KEY, cihaz kimliklerini virgülle ayrılmış olarak ayarlayın.
F9'a basın veya Çalıştır'ı tıklayın.
İyi eğlenceler ;)
<?php
// API access key from Google API's Console
define( 'API_ACCESS_KEY', 'YOUR-API-ACCESS-KEY-GOES-HERE' );
$registrationIds = array("YOUR DEVICE IDS WILL GO HERE" );
// prep the bundle
$msg = array
(
'message' => 'here is a message. message',
'title' => 'This is a title. title',
'subtitle' => 'This is a subtitle. subtitle',
'tickerText' => 'Ticker text here...Ticker text here...Ticker text here',
'vibrate' => 1,
'sound' => 1
);
$fields = array
(
'registration_ids' => $registrationIds,
'data' => $msg
);
$headers = array
(
'Authorization: key=' . API_ACCESS_KEY,
'Content-Type: application/json'
);
$ch = curl_init();
curl_setopt( $ch,CURLOPT_URL, 'https://android.googleapis.com/gcm/send' );
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 );
curl_close( $ch );
echo $result;
?>
FCM için google url'si şu şekilde olacaktır: https://fcm.googleapis.com/fcm/send
FCM v1 için google url'si şu şekilde olacaktır: https://fcm.googleapis.com/v1/projects/YOUR_GOOGLE_CONSOLE_PROJECT_ID/messages:send
Not: Google geliştirici konsolunda API Erişim Anahtarı oluştururken ip adresi olarak 0.0.0.0/0 kullanmanız gerekir. (Test amaçlı).
GCM sunucusundan geçersiz Kayıt yanıtı almanız durumunda, lütfen cihaz kodunuzun geçerliliğini çapraz kontrol edin. Aşağıdaki url'yi kullanarak cihaz jetonunuzun geçerliliğini kontrol edebilirsiniz:
https://www.googleapis.com/oauth2/v1/tokeninfo?access_token=YOUR_DEVICE_TOKEN
Bazı yanıt kodları:
Aşağıda, sunucudan alabileceğiniz bazı yanıt kodlarının açıklaması bulunmaktadır.
{ "message_id": "XXXX" } - success
{ "message_id": "XXXX", "registration_id": "XXXX" } - success, device registration id has been changed mainly due to app re-install
{ "error": "Unavailable" } - Server not available, resend the message
{ "error": "InvalidRegistration" } - Invalid device registration Id
{ "error": "NotRegistered"} - Application was uninstalled from the device