I have an iPhone app sending notifications and everything works fine ... Except sometimes :)
Let me explain: I use a fairly simple PHP script to send notifications (using the stream_context_create method), but some users told me that they are not receiving some notifications. Apparently, I might run into some cases where I need to send up to 50,000 notifications in a minute, and I think this might be a problem. I use one thread to send all notifications.
Have any of you guys encountered such a problem? Do I need to share multiple threads? Is there any information about the maximum number of notifications that I can send in a stream?
Thanks:)
Change 1
“Speed” is not a problem here: I can push all my notifications to Apple in a minute (maybe I may have problems in the future if my user number grows, but it's OK ATM). The problem that I see here is that Apple can consider me a spammer or something else, and does not send all my 50,000 notifications: / You guys have ideas, how can I make sure of this?
iphone notifications apple-push-notifications
Vivi
source share