php - Firebase 推送通知不起作用获取 token 号但仍然不起作用

标签 php android firebase google-cloud-messaging firebase-cloud-messaging

我正在使用 firebase 发送推送通知。它最近使用旧包名称工作正常我更改了我的应用程序的包名称后来通知不起作用,我再次使用 firebase 注册了新的包名称并在应用程序文件夹中添加了新的 google-services.json 文件我也得到了 token 号但通知不发送到手机。

 <?php 
//Getting api key 
$api_key = 'api_key'; 

//Getting registration token we have to make it as array 
$token = 'token_number';
$reg_token = array($token);

//Getting the message 
$message = 'Test Message Success!!';

//Creating a message array 
$msg = array
(
    'message' => $message,
    'title' => 'Test Message',
    'subtitle' => 'Android Push Notification using FCM Demo',
    'tickerText' => 'Ticker text here...Ticker text here...Ticker text here',
    'vibrate' => 1,
    'sound' => 1,
    'largeIcon' => 'large_icon',
    'smallIcon' => 'small_icon'
);

//Creating a new array fileds and adding the msg array and registration token array here 
$fields = array
(
    'registration_ids' => $reg_token,
    'data' => $msg
);

//Adding the api key in one more array header 
$headers = array
(
    'Authorization: key=' . $api_key,
    'Content-Type: application/json'
); 

//Using curl to perform http request 
$ch = curl_init();
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_RETURNTRANSFER, true );
curl_setopt( $ch,CURLOPT_SSL_VERIFYPEER, false );
curl_setopt( $ch,CURLOPT_POSTFIELDS, json_encode( $fields ) );

//Getting the result 
$result = curl_exec($ch );
curl_close( $ch );

//Decoding json from result 
// $res = json_decode($result);


//Getting value from success 
// $flag = $res->success;
?>

和 json 结果:

{"multicast_id":6575432603807598829,"成功":1,"失败":0,"canonical_ids":0," 结果":[{"message_id":"0:1549340761166996%1ca91b70f9fd7ecd"}]}

通知未发送,我在 firebase 云消息传递中尝试过 --> 通知部分也无法正常工作。

最佳答案

试试这个

$url = 'https://fcm.googleapis.com/fcm/send';

$fields = array (
        'registration_ids' => $ids,
         // fix new json format
        'notification' => array(
            'body' => 'Test message :)',
            'title' => 'Test',
        )

);

$fields = json_encode($fields);

$server_key = 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX';
// inherited key

$headers = array(
    'Content-Type:application/json',
    'Authorization:key='.$server_key
);

$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_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_POSTFIELDS, $fields);
$result = curl_exec($ch);

var_dump($result);

if ($result === FALSE) {
    die('Oops! FCM Send Error: ' . curl_error($ch));
}

curl_close($ch);

关于php - Firebase 推送通知不起作用获取 token 号但仍然不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54516651/

相关文章:

java - 当我尝试在 android studio 中调试时卡在收集数据中

firebase - 如何从Firebase存储映射中删除特定项目?

php - Facebook 照片标记

php - MYSQL,插入有效但无法连接

php - Symfony 2 带有 PUGXMultiUserBundle 和多登录表单

android - Android ARM 模拟器上的 C/C++ 单元测试 - Ubuntu

android - 着色器存储缓冲区对象 : endianness?

angular - 如何避免需要使用 Elvis Operator?

firebase - 用于基于 AWS 驱动的浏览器的应用程序的 G Suite 身份提供商

php - 来自 Twitter API 的 JSON 包含\u2019