通知没有打电话:GCM

时间:2015-08-05 06:13:52

标签: android notifications google-cloud-messaging

我正在关注this GCM通知教程。我可以注册设备但无法发送通知。
我还使用了几个在线服务来发送通知,他们正在发送消息,但是" null"消息。
请帮帮我,有什么不对 注意:我在大学网络中使用代理连接。

1 个答案:

答案 0 :(得分:2)

尝试使用下面的代码创建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;
?>