FCM rich push notification payload for iOS

前端 未结 2 436
無奈伤痛
無奈伤痛 2020-12-14 18:28

I am using FCM for my project. It\'s have rich push notification for a type. I tried to modified most of possible ways to get push from FCM. I got

2条回答
  •  余生分开走
    2020-12-14 18:55

    This worked for me. The accepted answer seems to have some unnecessary information.

    {
      "to" : "devicekey OR /topics/sometopic",
      "mutable_content": true,
      "data": {
        "mymediavideo": "https://myserver.com/myvideo.mp4"
      },
      "notification": {
        "title": "my title",
        "subtitle": "my subtitle",
        "body": "some body"
      }
    }
    

提交回复
热议问题