gpt4 book ai didi

ios - 如何使用 Firebase 通知控制台在 APNS 负载中添加 mutable_content?

转载 作者:塔克拉玛干 更新时间:2023-11-02 07:54:33 31 4
gpt4 key购买 nike

无法弄清楚如何在 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;
}

最佳答案

目前无法在使用 Firebase 通知控制台时设置 mutable_content 的值。您必须自己构建有效负载,如下所示:

{
"to": "<REGISTRATION_TOKEN_HERE>",
"mutable-content" : true,
"notification": {
"body" : "Eureka!",
"title": "Patient is not doing well",
"click_action" : "provider-body-panel"
}
}

然后从您自己的应用服务器发送它。您也可以通过 using Postman 来做到这一点或 cURL

我的回答中的修改部分 here .

关于ios - 如何使用 Firebase 通知控制台在 APNS 负载中添加 mutable_content?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43223560/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com