Search code examples
iosswiftfirebasefirebase-cloud-messagingfirebase-notifications

push notification using firebase issue(ios, swift 4)


Did not get the push notification data while sending notifcation through my php server using fire base registration token and server key.But it works when i send notification from firebase.Anybody please help me


Solution

  • Please note that to receive push notification in iOS the payload format should be like this

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