How to send silent pushes using APNs provider?
Hi everybody, hope you are all doing well!
I use APNs provider to send pushes to iOS subscribers. And the problem is I don't know how to override payload to send silent push notifications. I tried to set a hashmap in
And I expect the same structure on another side — iOS app but instead I get this structure:
It seems like Novu doesn't understand that he needs to send background push instead of alert type.
Here is some log from Activity Feed:
The problem with this log is absense of header key
How to solve it? How to send silent pushes using APNs provider?
p.s. My app is currently working well and now CloudKit sends correct silent pushes if I use
p.p.s. I've recently checked another topic but related to FCM instead right below.
Silent push notifications
The same solution is really needed for APNs provider. Now it's only possible to send
I use APNs provider to send pushes to iOS subscribers. And the problem is I don't know how to override payload to send silent push notifications. I tried to set a hashmap in
Overrides field like this:And I expect the same structure on another side — iOS app but instead I get this structure:
It seems like Novu doesn't understand that he needs to send background push instead of alert type.
Here is some log from Activity Feed:
The problem with this log is absense of header key
apns-type with value background.How to solve it? How to send silent pushes using APNs provider?
p.s. My app is currently working well and now CloudKit sends correct silent pushes if I use
content-available inside aps without any other keys like title and body.p.p.s. I've recently checked another topic but related to FCM instead right below.
Silent push notifications
The same solution is really needed for APNs provider. Now it's only possible to send
alert type pushes to APNs, unfortunately, as far as I can see.