Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/ssh/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
使用FCM解析部署在Amazon EC2 Android通知上的服务器_Android_Amazon Web Services_Amazon Ec2_Push Notification_Google Cloud Messaging - Fatal编程技术网

使用FCM解析部署在Amazon EC2 Android通知上的服务器

使用FCM解析部署在Amazon EC2 Android通知上的服务器,android,amazon-web-services,amazon-ec2,push-notification,google-cloud-messaging,Android,Amazon Web Services,Amazon Ec2,Push Notification,Google Cloud Messaging,我在解析服务器上有两个列,分别称为acceptedBy和username,希望在acceptedBy列的状态更改时发送通知 acceptedBy和username列始终由两个不同的用户组成acceptedBy始终更改为当前用户,此时我希望在username列中向用户发送通知 我需要使用FCM为Android应用程序执行此操作。设置此项的步骤是什么 通过使用notify.php并将其传输到可以从http://yourdomain.com/notify.php?Action=M&t=message

我在解析服务器上有两个列,分别称为
acceptedBy
username
,希望在
acceptedBy
列的状态更改时发送通知

acceptedBy
username
列始终由两个不同的用户组成
acceptedBy
始终更改为当前用户,此时我希望在
username
列中向用户发送通知


我需要使用FCM为Android应用程序执行此操作。设置此项的步骤是什么

通过使用
notify.php
并将其传输到可以从
http://yourdomain.com/notify.php?Action=M&t=message title here&m=body here&r=您的应用令牌here

notify.php:

<?php
// API access key from Google API's Console
define( 'API_ACCESS_KEY', 'YOUR-API-ACCESS-KEY-GOES-HERE' );
$registrationIds = array( $_GET['id'] );
// 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,
    'largeIcon' => 'large_icon',
    'smallIcon' => 'small_icon'
);
$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;