FirebaseMessagingService onMessageReceived() not executing



我刚开始使用Firebase Cloud Messaging,并在Manifest中设置了所有依赖项,Firebase服务及其服务标签。

从控制台发送消息时,会检测到目标用户,但应用不会收到通知。 所以我在 onMessageReceived(( 上设置了一个断点。但它并没有被激发。

以下是我的火力基础消息服务

public class MyFirebaseMessagingService extends FirebaseMessagingService {
private static final String TAG = "MyFirebaseMessagingServ";
@Override
public void onMessageReceived( RemoteMessage remoteMessage) {
super.onMessageReceived(remoteMessage);
String notificationBody = "";
String notificationTitle = "";
String notificationData = "";
try{
notificationData = remoteMessage.getData().toString();
notificationTitle = remoteMessage.getNotification().getTitle();
notificationBody = remoteMessage.getNotification().getBody();
}
catch (NullPointerException e){
Log.e(TAG, "onMessageReceived: NullPointerException: " + e.getMessage() );
}
NotificationHelper.displayNotification(getApplicationContext(), notificationTitle, 
notificationBody);
Log.d(TAG, "onMessageReceived: data: " + notificationData);
Log.d(TAG, "onMessageReceived: Notification body : " + notificationBody);
Log.d(TAG, "onMessageReceived: notification title: " + notificationTitle);
}

安卓清单

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.sys.systec">
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.CAMERA"/>
<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"
tools:ignore="GoogleAppIndexingWarning">

<activity android:name=".LoginActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
...
<service android:name=".utility.MyFirebaseMessagingService"
android:stopWithTask="false"
android:exported="false">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT" />
</intent-filter>
</service>
</application>

if you are using firebase terminal you will face the issue so you can use notification API (use data message)

应用程序接口:

https://fcm.googleapis.com/fcm/send

页眉:

"Content-Type": "application/json",
"Authorization": "key=<Server_key>"

身体:

{
"to": "<Device FCM token>",
"notification": {
"title": "Demo tittle",
"body": "Demo body",
"mutable_content": true,
},
"data": {
"url": "<media image url>",
"dl": "<deeplink action>"
}
}

指:

网址:https://firebase.google.com/docs/cloud-messaging/http-server-ref https://firebase.google.com/docs/cloud-messaging/downstream。

相关内容

  • 没有找到相关文章

最新更新