我正在尝试使用旧版应用程序服务器协议向我的安卓设备发送推送通知。根据回复,通知已成功发送,但我的安卓设备上没有收到任何内容。 我还尝试使用 firebase 控制台发送通知,它也显示已成功发送,但我再次没有收到任何内容。
这个问题在下面的答案中进行了讨论 通过 cURL/PHP 发送时,设备上未收到 Firebase 通知,但我没有犯此处答案中解决的错误。
这是我提出的要求
curl -X POST
-H "Authorization:key=MyAuthorizationKey"
-H "Content-Type: application/json"
-d '{ "message": { "notification": {
"title": "FCM Message",
"body": "This is an FCM Message", },
"to": "MyDeviceToken"}
}' https://fcm.googleapis.com/fcm/send
这是我得到的回应
{"multicast_id":8835070472349844293,"success":1,"failure":0,"canonical_ids":0,"results":[{"message_id":"0:1555418431449800%06445bacf9fd7ecd"}]}
发出此请求时,我的应用未在前台运行。因此,通知应由Google服务传递和显示,但这并未发生。
这是我的清单文件代码:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.srishti.elderly">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".SignUp"
android:label="SignUp" />
<activity
android:name=".SignIn"
android:label="SignIn" />
<service android:name=".MyFirebaseMessagingService"
android:exported="false">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT" />
</intent-filter>
</service>
<activity android:name=".Home"
android:label="Home"></activity>
<meta-data
android:name="com.google.firebase.messaging.default_notification_icon"
android:resource="@drawable/ic_launcher_background"/>
<meta-data
android:name="com.google.firebase.messaging.default_notification_color"
android:resource="@color/colorAccent"/>
</application>
</manifest>
这是我的onMessageReceived函数
public void onMessageReceived(RemoteMessage remoteMessage) {
Log.d(TAG, "on message received");
final Context context = this;
Intent intent = new Intent(this, MainActivity.class);
final PendingIntent pIntent = PendingIntent.getActivity(this, (int) System.currentTimeMillis(), intent, 0);
Notification noti = new Notification.Builder(this)
.setContentTitle("FTest")
.setContentText("Firebabse notification test")
.setSmallIcon(R.drawable.ic_launcher_background)
.setContentIntent(pIntent)
.build();
NotificationManager notificationManager = (NotificationManager) this.getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify(0, noti);
}
更新:
这是我尝试发送它的新 json:
curl -X POST
-H "Authorization:key=Authorizationkey"
-H "Content-Type: application/json"
-d '{
"data": { "title": "FCM Message", "body": "This is an FCM Message" },
"to": "devicetoken"
}' https://fcm.googleapis.com/fcm/send
更新: 当我在另一个工作设备上运行时,我的设备出现问题。谢谢。
问题是您发送的消息仅在应用程序在前台时有效,要使其在应用程序在后台工作,您应该使用数据,请尝试以下形式:
{
"data": {
"title":"FCM Message",
"Body":"This is an FCM Message"
},
"to" : "devicetoken"
}
解释:
通知- 仅当您的应用程序处于后台/已终止时,才会直接发送到 Android 的通知托盘的消息,或者如果您的应用程序处于前台,则发送到 onMessageReceived() 方法。
数据有效负载- 无论您的应用程序是在 forground 还是后台还是被杀死,这些消息都将始终传递到 onMessageReceived() 方法。