当应用程序closures时,Firebase IOS推送通知不起作用
当应用程序closures时,Firebase IOS推送通知不起作用。 我已经按照文档中的所有步骤进行了操作
这是一个快速的解决scheme,只需在“通知”等旁边添加“优先级”:“高”,iOS通知将在应用程序在后台时工作。
所以这将工作:
"to":"TOKEN ID", "notification" : { "body" : "test" }, "priority": "high" }
什么对我来说只是简单地给这个notification
添加title
:
"notification" : { "title": "foo", "body" : "bar" }
请尝试这个,希望它的作品:
POST https://gcm-http.googleapis.com/gcm/send { "to": "TOKEN_ID", "priority": "high", "notification": { "title": "foo", "body": "bar" } }