Sim*_*mar 6 php iphone ios firebase firebase-cloud-messaging
从firebase控制台发送通知时,通知工作正常.
我在ios设备上收到推送通知.
这是我使用FCM在php中向iphone发送推送通知的代码.
<?php $ch = curl_init("https://fcm.googleapis.com/fcm/send");
//The device token.
$token = "";
//Title of the Notification.
$title = "Carbon";
//Body of the Notification.
$body = "Bear island knows no king but the king in the north, whose name is stark.";
//Creating the notification array.
$notification = array('title' =>$title , 'text' => $body);
//This array contains, the token and the notification. The 'to' attribute stores the token.
$arrayToSend = array('to' => $token, 'notification' => $notification);
//Generating JSON encoded string form the above array.
$json = json_encode($arrayToSend);
//Setup headers:
$headers = array();
$headers[] = 'Content-Type: application/json';
$headers[] = 'Authorization: key= abcdgfdk'; //server key here
//Setup curl, add headers and post parameters.
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_POSTFIELDS, $json);
curl_setopt($ch, CURLOPT_HTTPHEADER,$headers);
//Send the request
$response = curl_exec($ch);
//Close request
curl_close($ch);
return $response; ?>
Run Code Online (Sandbox Code Playgroud)
它返回以下响应:
{"multicast_id":7847791275395796141,"success":1,"failure":0,"canonical_ids":0,"results":[{"message_id":"0:1473926169782959%51b989d251b989d2"}]}
Run Code Online (Sandbox Code Playgroud)
请告诉我我做错了什么?我用它的服务器密钥和设备令牌也使用相同的android代码,它工作正常......
Sim*_*mar 12
谢谢shubank ..你的答案是有效的......我唯一需要补充的是优先级高......这是更新后的代码......也许它可以帮助别人:)
$ch = curl_init("https://fcm.googleapis.com/fcm/send");
//The device token.
$token = ""; //token here
//Title of the Notification.
$title = "Carbon";
//Body of the Notification.
$body = "Bear island knows no king but the king in the north, whose name is stark.";
//Creating the notification array.
$notification = array('title' =>$title , 'text' => $body);
//This array contains, the token and the notification. The 'to' attribute stores the token.
$arrayToSend = array('to' => $token, 'notification' => $notification,'priority'=>'high');
//Generating JSON encoded string form the above array.
$json = json_encode($arrayToSend);
//Setup headers:
$headers = array();
$headers[] = 'Content-Type: application/json';
$headers[] = 'Authorization: key= $key'; // key here
//Setup curl, add headers and post parameters.
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_POSTFIELDS, $json);
curl_setopt($ch, CURLOPT_HTTPHEADER,$headers);
//Send the request
$response = curl_exec($ch);
//Close request
curl_close($ch);
return $response;
Run Code Online (Sandbox Code Playgroud)
这是我测试过的代码并且运行良好。确保传递 fcm 令牌
$path_to_firebase_cm = 'https://fcm.googleapis.com/fcm/send';
$token=array($token);
$fields = array(
'registration_ids' => $token,
'priority' => 10,
'data'=>$send_notification ,
'notification' => array('title' => $type_of_notification, 'body' => $title ,'sound'=>'Default'),
);
$headers = array(
'Authorization:key=' .'your server key' ,
'Content-Type:application/json'
);
// Open connection
$ch = curl_init('https://fcm.googleapis.com/fcm/send');
// Set the url, number of POST vars, POST data
curl_setopt($ch, CURLOPT_URL, $path_to_firebase_cm);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4 );
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($fields));
// Execute post
$result = curl_exec($ch);
// Close connection
curl_close($ch);
return $result;
Run Code Online (Sandbox Code Playgroud)