phone:GCM 未收到通知

Notification not coming to phone:GCM

我正在学习 this GCM 教程 notification.I 可以注册设备但无法发送通知。
我还使用了几个在线服务来发送通知,它们正在发送消息,但带有 "null" 消息。
请帮助我,有什么问题 注意:我在我的大学网络中使用代理连接。

尝试使用以下代码创建 some_name.php 文件并将其上传到服务器,然后打开它。它应该发送通知。

不要忘记更改:"add_your_server_key_here"、"register_id_of_your_device"。

<?php
define( 'API_ACCESS_KEY', 'add_your_server_key_here' );

$registrationIds = array("register_id_of_your_device" );

$msg = array
(
    'message'       => 'your_message',
    'title'         => 'title_of_message',
);

$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;
?>