Firebase IOS push notification doesn't work when app is closed

后端 未结 3 1754
长情又很酷
长情又很酷 2021-01-18 05:54

Firebase IOS push notification doest not work when app is closed. I have followed all the steps as in documentation

3条回答
  •  無奈伤痛
    2021-01-18 06:02

    Please try with this, hope it works:

    POST https://gcm-http.googleapis.com/gcm/send
    {
        "to": "TOKEN_ID",
        "priority": "high",
        "notification": {
            "title": "foo",
            "body": "bar"
        }
    }
    

提交回复
热议问题