I have a newsstand app and am successfully sending the newsstand notification to trigger the download of new issues. This notification is using "content-available":1.
What I have noticed is that for those devices not connected to WiFi nothing happens. I understand that auto downloads are only for those devices connected to WiFi.
Push notification format is
{
"aps":{
"sound":"default",
"content-available":1,
"badge":0,
"alert":"{{ title }} is now available"
},
"issue":{
"url":"{{ url }}",
"name":"{{ title }}"
}
}
I would at least like an alert to appear for those devices not connected to WiFi. Do I need to send another notification without "content-available":1?
For those devices connected to WiFi an alert is shown when the issue has downloaded. I would prefer not to send two notification if I can avoid it as this would then show two notification for WiFi connected devices (one to say there is a new issue and then another moments later to say that it has downloaded).