gpt4 book ai didi

Firebase 云消息传递声音错误

转载 作者:行者123 更新时间:2023-12-02 21:43:15 25 4
gpt4 key购买 nike

我正在尝试使用 firebase api 发送通知,如果通知 JSON 对象中只有“标题”和“正文”,则通知会成功发送。但是,如果我将 "sound":"default"添加到通知对象,如 documentation 中所述,我收到以下错误:

“收到无效的 JSON 有效负载。'message.notification' 处的名称\“声音\”未知:找不到字段。”

我的 JSON 对象如下:

{"message":{"token": token, "notification":{"title":"Test", "body":"Test message from server", "sound":"default"}}}

最佳答案

JSON 中出现消息表明您正在使用HTTP v1 API 。您链接的文档适用于旧版 API。

为 Android 和 iOS 设备发送声音通知的 HTTP v1 API JSON 应该是:

{
"message": {
"token": "your-token-value",
"notification": {
"title": "Test",
"body": "Test message from server"
},
"android": {
"notification": {
"sound": "default"
}
},
"apns": {
"payload": {
"aps": {
"sound": "default"
}
}
}
}
}

关于Firebase 云消息传递声音错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48690274/

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