我有3个应用程序,2个正常运行并且正在接收来自FCM的推送,但其中一个没有接收推送。
我不知道为什么,但我的其他应用会收到这样的推送通知:
{
aps = {
alert = {
body = "body here";
title = "title here;
};
badge = 3;
"content-available" = 1;
};
"gcm.message_id" = "0:1468862214187339%9c127a139c127a13";
}
但是在我的其他应用程序中,我收到这样的消息(没有aps正文):
{
"collapse_key" = "...";
from = 1003897668292;
notification = {
body = "body here";
e = 1;
title = "title here";
};
}
那么,我有一些问题吗?
我在两个应用程序中都做了相同的过程。
有人知道Firebase发送不同格式邮件的原因吗?在服务器上,我以相同的方式发送消息。
我希望收到“aps / alert / body”格式的消息。
亲切的问候