Znalazłem bardzo łatwy sposób, aby to zrobić.
Otwórz http://phpfiddle.org/
Wklej następujący skrypt php w polu. W skrypcie php ustaw API_ACCESS_KEY, ustaw identyfikatory urządzeń oddzielone przecinkami.
Naciśnij klawisz F9 lub kliknij Uruchom.
Baw się dobrze ;)
<?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;
?>
W przypadku FCM adres URL Google to: https://fcm.googleapis.com/fcm/send
W przypadku FCM v1 adres URL Google to: https://fcm.googleapis.com/v1/projects/YOUR_GOOGLE_CONSOLE_PROJECT_ID/messages:send
Uwaga: podczas tworzenia klucza dostępu API w konsoli programisty Google musisz użyć 0.0.0.0/0 jako adresu IP. (Do celów testowych).
W przypadku otrzymania nieprawidłowej odpowiedzi rejestracyjnej z serwera GCM, sprawdź krzyżowo ważność tokena urządzenia. Możesz sprawdzić ważność tokena urządzenia, korzystając z następującego adresu URL:
https://www.googleapis.com/oauth2/v1/tokeninfo?access_token=YOUR_DEVICE_TOKEN
Niektóre kody odpowiedzi:
Poniżej znajduje się opis niektórych kodów odpowiedzi, które możesz otrzymać z serwera.
{ "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