无论应用是否在后台运行,推送通知都无法正常工作 运行
Push notification works incorrectly when app is on background or not running
我正在使用 Firebase Cloud Messaging 发送推送通知。
这是我的 FirebaseMessageService
:
public class FireBaseMessageService extends FirebaseMessagingService {
@Override
public void onMessageReceived(RemoteMessage remoteMessage) {
Log.e("TAG", "From: " + remoteMessage.getFrom());
Log.e("TAG", "Notification Message Body: " + remoteMessage.getData().get("CardName")+" : "+remoteMessage.getData().get("CardCode"));
sendNotification(remoteMessage.getNotification().getBody());
}
private void sendNotification(String messageBody) {
Intent intent = new Intent(this, StartActivity.class);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0 /* Request code */, intent,
PendingIntent.FLAG_ONE_SHOT);
Uri defaultSoundUri= RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
.setSmallIcon(R.mipmap.ic_launcher_final)
.setContentTitle("Notification")
.setContentText(messageBody)
.setTicker("Test")
.setAutoCancel(true)
.setDefaults(Notification.DEFAULT_SOUND)
.setContentIntent(pendingIntent);
NotificationManager notificationManager =
(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify(0 /* ID of notification */, notificationBuilder.build());
}
}
和FirebaseInstanceServer
:
public class FirebaseInstanceService extends FirebaseInstanceIdService {
@Override
public void onTokenRefresh() {
// Get updated InstanceID token.
String refreshedToken = FirebaseInstanceId.getInstance().getToken();
Log.e("TAG", "Refreshed token: " + refreshedToken);
// TODO: Implement this method to send any registration to your app's servers.
sendRegistrationToServer(refreshedToken);
}
private void sendRegistrationToServer(String token) {
// Add custom implementation, as needed.
Log.e("TAG", "Refreshed token2: " + token);
}
}
在AndroidManifest
中声明:
<service
android:name=".util.notifications.FireBaseMessageService">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT"/>
</intent-filter>
</service>
<service
android:name=".util.notifications.FirebaseInstanceService">
<intent-filter>
<action android:name="com.google.firebase.INSTANCE_ID_EVENT"/>
</intent-filter>
</service>
所以问题是,当 App 运行 ticker
时显示良好并且通知带有默认声音,但是当 App 在后台或不在 运行 时,通知没有任何声音和 ticker
未显示在状态栏中。
为什么会发生这种情况,我该如何解决?
使用 FCM,您指定要发送到 https://fcm.googleapis.com/fcm/send
的 POST 负载。在该有效负载中,您可以指定 data
或 notification
密钥,或同时指定两者。
如果您的负载仅包含一个 data
密钥,您的应用程序将自行处理所有推送消息。例如。它们都已交付给您的 onMessageReceived
处理程序。
如果您的负载包含一个 notification
键,您的应用程序将自己处理推送消息 只有 如果您的应用程序是 active/in 前台。如果不是(所以它在后台,或者完全关闭),FCM 会使用您输入 notification
键负载的值来为您显示通知。
请注意,从控制台(如 Firebase 控制台)发送的通知总是包含一个 notification
键。
看起来你想自己处理 FCM 消息,这样你就可以自定义通知等等,所以最好不要在 POST 负载中包含 notification
键, 因此所有推送消息都会传送到您的 onMessageReceived
.
您可以在此处阅读更多相关信息:
Advanced messaging options
Downstream message syntax
我花了 2 周的时间来理解为什么我的应用程序在后台时无法再接收数据消息,尽管它可能很奇怪,但我得出的结论是 Android-Studio 2.1.2 是问题所在!
I cannot receive any FCM message anymore in background application
{
"to": "user_device_token",
"collapse_key": "type_a",
"data": {
"body": "your message body",
"title": "notification title",
"description":"notification description ",
"imageUrl":"image url",
"key_1": "Value for key_1",
"key_2": "Value for key_2"
}
}
从后端的通知消息json响应中删除notification
键
我正在使用 Firebase Cloud Messaging 发送推送通知。
这是我的 FirebaseMessageService
:
public class FireBaseMessageService extends FirebaseMessagingService {
@Override
public void onMessageReceived(RemoteMessage remoteMessage) {
Log.e("TAG", "From: " + remoteMessage.getFrom());
Log.e("TAG", "Notification Message Body: " + remoteMessage.getData().get("CardName")+" : "+remoteMessage.getData().get("CardCode"));
sendNotification(remoteMessage.getNotification().getBody());
}
private void sendNotification(String messageBody) {
Intent intent = new Intent(this, StartActivity.class);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0 /* Request code */, intent,
PendingIntent.FLAG_ONE_SHOT);
Uri defaultSoundUri= RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
.setSmallIcon(R.mipmap.ic_launcher_final)
.setContentTitle("Notification")
.setContentText(messageBody)
.setTicker("Test")
.setAutoCancel(true)
.setDefaults(Notification.DEFAULT_SOUND)
.setContentIntent(pendingIntent);
NotificationManager notificationManager =
(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify(0 /* ID of notification */, notificationBuilder.build());
}
}
和FirebaseInstanceServer
:
public class FirebaseInstanceService extends FirebaseInstanceIdService {
@Override
public void onTokenRefresh() {
// Get updated InstanceID token.
String refreshedToken = FirebaseInstanceId.getInstance().getToken();
Log.e("TAG", "Refreshed token: " + refreshedToken);
// TODO: Implement this method to send any registration to your app's servers.
sendRegistrationToServer(refreshedToken);
}
private void sendRegistrationToServer(String token) {
// Add custom implementation, as needed.
Log.e("TAG", "Refreshed token2: " + token);
}
}
在AndroidManifest
中声明:
<service
android:name=".util.notifications.FireBaseMessageService">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT"/>
</intent-filter>
</service>
<service
android:name=".util.notifications.FirebaseInstanceService">
<intent-filter>
<action android:name="com.google.firebase.INSTANCE_ID_EVENT"/>
</intent-filter>
</service>
所以问题是,当 App 运行 ticker
时显示良好并且通知带有默认声音,但是当 App 在后台或不在 运行 时,通知没有任何声音和 ticker
未显示在状态栏中。
为什么会发生这种情况,我该如何解决?
使用 FCM,您指定要发送到 https://fcm.googleapis.com/fcm/send
的 POST 负载。在该有效负载中,您可以指定 data
或 notification
密钥,或同时指定两者。
如果您的负载仅包含一个 data
密钥,您的应用程序将自行处理所有推送消息。例如。它们都已交付给您的 onMessageReceived
处理程序。
如果您的负载包含一个 notification
键,您的应用程序将自己处理推送消息 只有 如果您的应用程序是 active/in 前台。如果不是(所以它在后台,或者完全关闭),FCM 会使用您输入 notification
键负载的值来为您显示通知。
请注意,从控制台(如 Firebase 控制台)发送的通知总是包含一个 notification
键。
看起来你想自己处理 FCM 消息,这样你就可以自定义通知等等,所以最好不要在 POST 负载中包含 notification
键, 因此所有推送消息都会传送到您的 onMessageReceived
.
您可以在此处阅读更多相关信息:
Advanced messaging options
Downstream message syntax
我花了 2 周的时间来理解为什么我的应用程序在后台时无法再接收数据消息,尽管它可能很奇怪,但我得出的结论是 Android-Studio 2.1.2 是问题所在!
I cannot receive any FCM message anymore in background application
{
"to": "user_device_token",
"collapse_key": "type_a",
"data": {
"body": "your message body",
"title": "notification title",
"description":"notification description ",
"imageUrl":"image url",
"key_1": "Value for key_1",
"key_2": "Value for key_2"
}
}
从后端的通知消息json响应中删除notification
键