字段"to"必须是 JSON 字符串,FCM 错误



使用FCM和PHP发送通知时,请显示以下错误

"Field "to" must be a JSON string: ["*****DEVICE TOKEN******"]n"

我的输入格式是

{
    "to": [
        "DEVICE TOKEN"
    ],
    "data": {
        "title": "Tp App",
        "message": "Hai, this is my first fire base message",
        "image": "http://api.androidhive.info/images/minion.jpg"
    }
}

我知道这已经问过问题。但是我尝试了这些解决方案,但对我没有工作,例如" registraion_ids"更改为"。请帮助我,并提前感谢。

您将数组传递给to参数,将其更改为

"to":"DEVICE TOKEN"

相关内容

  • 没有找到相关文章

最新更新