Push notification not receiving in background iOS

后端 未结 3 924
情深已故
情深已故 2020-12-07 05:31

I am doing push notification in my project through GCM. My Application is able to receive notification in foreground but not in background.

I receive a message insi

3条回答
  •  不思量自难忘°
    2020-12-07 05:50

    Create notification in this pattern

    {
        "to": "ID",
        "notification": {
            "sound": "default",
            "title": "TITLE",
            "body": "BODY"
        },
        "priority": "high"
    }
    

提交回复
热议问题