0
FCM通过fcm控制台发送通知到我的ios设备,但是来自php服务它没有发送通知。我想使用FCM将通知发送到我的应用程序。我在php中实现了web服务,将消息发送到我的应用程序服务器上的应用程序。我为此创建了4项服务。FCM通过fcm控制台发送通知到我的ios设备,但是从php服务发送通知没有发送通知
- group_create.php
- device_add.php
- device_remove.php
- send_comments.php
创建组,我得到的通知成功的关键,并与FCM注册registraion ID后面。当我使用通知键调用send_comments.php时,它会返回带有{“success”的json数据:1,“failure”:0}。但我没有得到任何通知我的ios。我已正确实施所有方法。它适用于fcm控制台,但不适用于PHP服务。任何人都可以知道这件事。我附上所有4个PHP文件。请帮帮我。
group_create.php
<?php
$url = 'https://android.googleapis.com/gcm/notification';
$notification_key_name = $_REQUEST['notification_key_name'];
$regid = $_REQUEST['regid'];
$fields = array(
"operation"=>"create",
"notification_key_name"=>$notification_key_name,
"registration_ids"=> array($regid)
);
$fields = json_encode($fields);
$headers = array (
"Authorization:key=A************************",
"Content-Type:application/json",
"project_id:78508******"
);
$ch = curl_init();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_POST, true);
curl_setopt ($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt ($ch, CURLOPT_POSTFIELDS, $fields);
$result = curl_exec ($ch);
//echo $result;
$res_notification_key = json_decode($result,true);
if(array_key_exists('notification_key', $res_notification_key)){
$notification_key = $res_notification_key['notification_key'];
echo $notification_key;
}
else{
echo $result;
}
curl_close ($ch);
?>
device_add.php
<?php
$senderId = "785********";
$notification_key_name= $_REQUEST['notification_key_name'];
$reg_id = $_REQUEST['regid'];
$notification_key = $_REQUEST['not_key'];
$apiKey =
$url = 'https://android.googleapis.com/gcm/notification';
$headers = array (
"Accept:application/json",
"Authorization:key=A******************",
"Content-Type:application/json",
"project_id:78508*****"
);
$fields = array(
"operation"=>"add",
"notification_key_name"=> $notification_key_name,
"registration_ids"=> array($reg_id),
"notification_key"=>$notification_key
);
$fields = json_encode($fields);
$ch = curl_init();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_POST, true);
curl_setopt ($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt ($ch, CURLOPT_POSTFIELDS, $fields);
$result = curl_exec ($ch);
echo $result;
$res_notification_key = json_decode($result,true);
if(array_key_exists('notification_key', $res_notification_key)){
$notification_key = $res_notification_key['notification_key'];
echo $notification_key;
}
else{
echo $result;
}
curl_close ($ch);
?>
device_remove.php
<?php
$senderId = "78508*****";
$notification_key_name= $_REQUEST['notification_key_name'];
$reg_id = $_REQUEST['regid'];
$notification_key = $_REQUEST['not_key'];
$apiKey =
$url = 'https://android.googleapis.com/gcm/notification';
$headers = array (
"Accept:application/json",
"Authorization:key=A***********",
"Content-Type:application/json",
"project_id:78508*****"
);
$fields = array(
"operation"=>"remove",
"notification_key_name"=> $notification_key_name,
"registration_ids"=> array($reg_id),
"notification_key"=>$notification_key
);
$fields = json_encode($fields);
$ch = curl_init();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_POST, true);
curl_setopt ($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt ($ch, CURLOPT_POSTFIELDS, $fields);
$result = curl_exec ($ch);
echo $result;
$res_notification_key = json_decode($result,true);
if(array_key_exists('notification_key', $res_notification_key)){
$notification_key = $res_notification_key['notification_key'];
echo $notification_key;
}
else{
echo $result;
}
curl_close ($ch);
?>
send_comments.php
<?php
$senderId = "78508*****";
$notification_key = $_REQUEST['not_key'];
$url = 'https://fcm.googleapis.com/fcm/send';
$headers = array (
"Authorization:key=A*****************",
"Content-Type:application/json",
);
$msg = array("hello"=>"This is a Firebase Cloud Messaging Device Group Message!");
$msg_dict = json_encode($msg);
//echo $msg_dict;
$fields = array(
"to"=>$notification_key,
"data"=>array(
"message" => "hell",
),
);
$fields = json_encode($fields);
$ch = curl_init();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_POST, true);
curl_setopt ($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt ($ch, CURLOPT_POSTFIELDS, $fields);
$result = curl_exec ($ch);
echo $result;
$res_notification_key = json_decode($result,true);
curl_close ($ch);
?>
检查此问题http://stackoverflow.com/questions/38479668/firebase-api-is-not-sending-push-notifications-when-using-the-api/ –