-2

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

ReyAnthonyRenacia
  • 17,219
  • 5
  • 37
  • 56
Vishnu C
  • 3
  • 3

1 Answers1

0

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"
 } 
}
Manish Malviya
  • 546
  • 2
  • 15