使用firebase问题推送通知(ios,swift 4)

时间:2018-03-01 07:06:35

标签: ios swift firebase firebase-cloud-messaging firebase-notifications

使用火基注册令牌和服务器密钥通过我的php服务器发送通知时没有得到推送通知数据。但是当我从firebase发送通知时它可以正常工作。有人请帮帮我

1 个答案:

答案 0 :(得分:0)

请注意,要在iOS中接收推送通知,有效负载格式应该是这样的

 {
 "to" : "your token here",
 "notification" : {
 "body" : "great match!",
 "title" : "Portugal vs. Denmark"
 },
 "data" : {
 "body" : "great match!",
 "title" : "Portugal vs. Denmark"
 } 
}