พบวิธีที่ง่ายมากในการทำเช่นนี้
เปิดhttp://phpfiddle.org/
วางสคริปต์ php ต่อไปนี้ในกล่อง ในชุดสคริปต์ php API_ACCESS_KEY ตั้งค่ารหัสอุปกรณ์ที่คั่นด้วยโคม่า
กด F9 หรือคลิกเรียกใช้
มีความสุข ;)
<?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 URL ของ Google จะเป็น: https://fcm.googleapis.com/fcm/send
สำหรับ FCM v1 google url จะเป็น: https://fcm.googleapis.com/v1/projects/YOUR_GOOGLE_CONSOLE_PROJECT_ID/messages:send
หมายเหตุ: ขณะสร้างคีย์การเข้าถึง API บนคอนโซลนักพัฒนาของ Google คุณต้องใช้ 0.0.0.0/0 เป็นที่อยู่ IP (เพื่อการทดสอบ).
ในกรณีที่ได้รับการตอบกลับการลงทะเบียนที่ไม่ถูกต้องจากเซิร์ฟเวอร์ GCM โปรดตรวจสอบความถูกต้องของโทเค็นอุปกรณ์ของคุณ คุณสามารถตรวจสอบความถูกต้องของโทเค็นอุปกรณ์ของคุณได้โดยใช้ URL ต่อไปนี้:
https://www.googleapis.com/oauth2/v1/tokeninfo?access_token=YOUR_DEVICE_TOKEN
รหัสตอบกลับบางส่วน:
ต่อไปนี้เป็นคำอธิบายของรหัสตอบกลับบางส่วนที่คุณอาจได้รับจากเซิร์ฟเวอร์
{ "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