Posts

Post not yet marked as solved
15 Replies
Do you believe the apns-push-type parameter goes into the "aps" portion of the notification payload?I have tried this:{ "aps": { "content-available": 1, "apns-push-type": "background" }, ...}but the app is still not receiving the silent notifications
Post not yet marked as solved
15 Replies
could you explain this - "this is a APNS POST request header field, not a new key in push JSON."?I had been assuming that this new field should be put in the aps header of the notificationIE what was:"aps": { "content-available": 1, },should now be:"aps": { "content-available": 1, "apns-push-type" : "background" },That statement makes me think it actually belongs somewhere else, but i'm not clear on where.
Post not yet marked as solved
2 Replies
Silent notifications are (still) not working in the 13.1.2I have added the newly required apns-push-type parameter to my head and the apns-priorty parameter but they are still not being delivered to the app. Did you get any further with this problem?
Post not yet marked as solved
3 Replies
It appears that alert style notifications work fine without this new apns-push-type parameter but silent notifications do Not get delivered either with or without this.This is a pretty bad problem for my application.