【发布时间】:2019-06-28 05:22:08
【问题描述】:
我正在使用 firebase 发送推送通知。最近使用旧包名称运行良好我更改了我的应用程序的包名称后来通知不起作用,我再次使用 firebase 注册了新包名称并在应用程序文件夹中添加了新的 google-services.json 文件,我也获得了令牌号但通知没有发送到手机。
<?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,"success":1,"failure":0,"canonical_ids":0," 结果":[{"message_id":"0:1549340761166996%1ca91b70f9fd7ecd"}]}
通知未发送,我在 firebase 云消息传递中尝试使用 --> 通知部分也无法正常工作。
【问题讨论】:
-
上传你的json文件和manifest文件
-
添加json结果请帮忙
-
@androidnewbee 您是否修改了代码中的 api 密钥并尝试使用 fcm 的 firebase 控制台。也尝试从控制台向所有用户发送消息。
-
@newton_cr7 是的,我尝试了一切... php 文件显示在 json 结果上方,但在移动设备中没有收到通知,但在 firebase 控制台中它可以工作,这意味着当我使用 php 文件时会收到通知,但它不起作用。
标签: php android firebase google-cloud-messaging firebase-cloud-messaging