0

I know already how to do it in IOS 10 by use of Push notification Service, but in ios 9 it is not supported. Any suggestions?

Nishant Bhindi
  • 2,242
  • 8
  • 21
Adilet
  • 1

1 Answers1

0

Check this my payload content for Rich notification

{
"to": "Your_FCM_ID",
"data": {
    "image": "Anyimage URL",
    "mediaType": “JPG”,
    "type": "If_you_have_different_type_of_rich_notification"
},
"notification": {
    "body": "Body",
    "sound": "default",
    "title": "Your_title"
},
"content_available": true,
"mutable_content": true
}

Check this link for the more different type of payload content.

Make sure do you have correct format code

Get reference info to implement Rich notification

Mathi Arasan
  • 869
  • 2
  • 10
  • 32