Firebase Push notifications don't work on iOS 13

后端 未结 8 1571
轮回少年
轮回少年 2021-01-03 02:31

Firebase push notifications aren\'t working on iOS 13. But works fine in iOS 12.4. Any solution?

Edited: 04.10.19

Silent push notification not working iOS 13

8条回答
  •  梦谈多话
    2021-01-03 03:17

    Maybe its pattern of iOS13 bug or updates, This will be work for iOS12 & iOS13

    {
    "to":"",
    "priority":"high",
    "content_available":true,
    "data":{
        "abc":"abc"
        },
    "notification":{
        "body":"abc"
        }
    }
    
    Or
    
    {
    "to":"",
    "priority":"high",
    "content_available":true,
    "data":{
        "abc":"abc"
        }
    }
    

提交回复
热议问题