如何向多个设备发送推送通知?
这是我第一次在我的应用程序中使用推送通知。我已经阅读了示例应用程序和书籍,并且了解了如何向单个设备发送推送通知。但我不知道我应该在程序中进行哪些更改才能将推送通知发送到多个设备。我正在使用“PushMeBaby”应用程序进行服务器端编码。 请帮帮我。
This is the first time I am using push notification in my App. I have gone through sample applications along with books and I got how to send push notification to a single device. But I am not getting exactly what changes should I do in my program to send push notification to multiple devices. I am using 'PushMeBaby' application for server side coding.
Please, help me out.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试此示例代码并根据您的环境进行修改。
本文有助于验证断开连接和连接状态:Apple 推送通知:发送高大量消息
其他参考链接:
如何在 iPhone 中一次性向多个设备发送推送通知?
和
使用推送通知时如何处理多个设备?
Try this example code and modify for your environment.
This article helps verifying drop connection and connection status: Apple Push Notification: Sending high volumes of messages
Other reference links:
How can I send push notification to multiple devices in one go in iPhone?
and
how to handle multiple devices when using Push Notification?
我发现您必须为每个 fwrite 创建一个新的stream_context_create,以防止苹果因错误令牌而关闭连接。
I found that you have to create a new stream_context_create for each fwrite to prevent apple from closing the connection for a bad token.
这就是我此处所做的
This is what I have done here