在php中发送推送通知时注册无效
Posted
技术标签:
【中文标题】在php中发送推送通知时注册无效【英文标题】:Invalid registration while sending push notification in php 【发布时间】:2019-06-05 11:56:00 【问题描述】:我正在关注这个Firebase Cloud Messaging (FCM) Server Side Implementation. 。但得到了invalidregistrationid
的错误。
做了谷歌搜索,但一无所获。 我还发现了一些已经在 *** 上回答的相关问题。但没有解决方案。 我访问了以下链接以获取解决方案。
-
a link。
B link。
class abc
function send_android_notification($registration_ids="2fa86bbc8bc4aee204255a0d84461c000a26442312d0a9b1df1664d461fd3b7d")
$message = array('title' => 'CodeCastra', 'body' => "hi huye" ,'sound'=>'Default','image'=>'Notification Image' );
define("GOOGLE_API_KEY", "AIzaSyDDvpPcWfOTVkkvA-yQg4yTYzIuh0MNIRw"); //legacy server key
$fields = array(
'registration_ids' => (array)$registration_ids,
'notification' => $message, //note: body & title fileds must be specified for the message or your only get just the vibration but the notification
);
$headers = array(
'Authorization: key=' . GOOGLE_API_KEY, // FIREBASE_API_KEY_FOR_ANDROID_NOTIFICATION
'Content-Type: application/json'
);
//Open connection
$ch = curl_init();
//Set the url, number of POST vars, POST data
curl_setopt($ch, CURLOPT_URL, 'https://fcm.googleapis.com/fcm/send');
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
// Disabling SSL Certificate support temporarly
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($fields));
//echo json_encode($fields);
//print_r($headers);
//exit;
//Execute post
$result = curl_exec($ch);
if ($result === false)
die('Curl failed:' . curl_errno($ch));
// Close connection
curl_close($ch);
return $result;
print_r((new abc)->send_android_notification());
die;
"multicast_id":4707836736661373968,"success":0,"failure":1,"canonical_ids":0,"results":["error":"InvalidRegistration"]
任何帮助将不胜感激。 谢谢
【问题讨论】:
***.com/questions/39614607/… 嗨@Dharman我没有使用pem文件我正在使用firebase访问令牌进行推送通知 我不是 Firebase 方面的专家,但无论哪种方式,我都知道您不应该禁用这两个选项。完整阅读链接的文章,也许它也可以帮助您在 firebase 上正确设置 cUrl。 @Dharman 感谢您的建议,但我的错误已解决 【参考方案1】:我正在实现您的代码。
使用在设备(ios/android)中生成的firebase registration token
而不是设备令牌。
'registration_ids' => (array)$token,
希望对你有帮助
【讨论】:
以上是关于在php中发送推送通知时注册无效的主要内容,如果未能解决你的问题,请参考以下文章