Sou*_*har 4 ios firebase firebase-cloud-messaging firebase-notifications
无法弄清楚如何在 aps 字典中发送 mutable_content=true 。这是我从 firebase 消息控制台发送通知时收到的 json 有效负载
{
aps = {
alert = {
body = "50% off on booking ";
title = "CompanyName 50% coupon ABC50OFF";
};
sound = default;
};
"attachment-url" = "https://www.xxxxxxxxx.com/campaign/images_thumb/Toyota-Fortuner-AT.jpg";
"click_action" = reminder;
"content_available" = 1;
"gcm.message_id" = "0:1491225835295720%a84b45aaa84b45aa";
"gcm.n.e" = 1;
"gcm.notification.sound2" = default;
"google.c.a.c_id" = 3829383583613273032;
"google.c.a.e" = 1;
"google.c.a.ts" = 1491225835;
"google.c.a.udt" = 0;
"mutable_content" = 1;
}
Run Code Online (Sandbox Code Playgroud)
目前无法mutable_content在使用 Firebase 通知控制台时设置 的值。您必须自己构建有效负载,如下所示:
{
"to": "<REGISTRATION_TOKEN_HERE>",
"mutable-content" : true,
"notification": {
"body" : "Eureka!",
"title": "Patient is not doing well",
"click_action" : "provider-body-panel"
}
}
Run Code Online (Sandbox Code Playgroud)
然后从您自己的应用服务器发送它。您也可以使用 Postman或cURL来执行此操作
修改了我在此处回答的部分。
小智 6
答案不正确,您应该使用“mutable_content”而不是“mutable-content”
{
"to": "Token",
"mutable_content" : true,
"notification" : {
"body" : "great match!",
"title": "check"
}
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
4131 次 |
| 最近记录: |