静默推送通知在iOS 13中不起作用

时间:2019-09-26 07:04:51

标签: ipados

静音通知在iPadOS中不起作用。但是,在12.4 OS中,它运行良好。

{     “ aps”:{        “内容可用”:“ 1”     },   “ BuildingId”:13,  “ NotificationTypeId”:214,  “ CustomerName”:“测试”,  “金额”:“ 6778”,  “客户ID”:32752, “环境”:“测试”,  “标题”:”” }

3 个答案:

答案 0 :(得分:1)

向运行iOS 13和更高版本或watchOS 6和更高版本的设备发送通知时,需要

“ apns-push-type”。在早期的系统版本上被忽略。 Apple document APNS Silent push notification

答案 1 :(得分:0)

添加“ apns-push-type”标头字段可解决此问题。请注意,这是一个APNS POST请求标头字段,而不是推送JSON中的新键。

答案 2 :(得分:0)

从邮递员那里试试这个。它对我有用

{ 
"to":"token", 
    "content_available":true,
    "mutable_content": true,
    "data": {
        "message": "Offer!",
        "urlImageString":"https://res.cloudinary.com/demo/image/upload/sample.jpg",
    }
}