我正在尝试使用旧版应用服务器协议向我的android设备发送推送通知。通知已根据响应成功发送,但我的Android设备未收到任何通知。 我还尝试使用Firebase控制台发送通知,并且该通知还显示发送成功,但是我仍然没有收到任何通知。
此问题在以下答案Firebase Notification not received on device when sent via cURL/PHP中进行了讨论,但我没有在这里的答案中解决错误。
这是我提出的要求
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
更新: 当我在其他设备上运行该设备时,我的设备出现了问题。谢谢。
答案 0 :(得分:1)
问题是您发送的消息仅在应用程序处于前台时才起作用,要使其在应用程序处于后台时起作用,您应该使用数据,请尝试以下形式:
{
"data": {
"title":"FCM Message",
"Body":"This is an FCM Message"
},
"to" : "devicetoken"
}
说明:
通知-仅在您的应用程序处于后台/已终止状态时才直接发送到Android的通知栏中的消息,或者如果您的应用程序在前景中时则传递至onMessageReceived()方法的消息。 >
数据有效载荷-您的应用程序是在前台,后台还是被杀死都无关紧要,这些消息将始终传递到onMessageReceived()方法。