为 iPhone 同步 RSS feed 预约服务
我们有一个网络应用程序,为我们的客户提供内置的预约/调度功能。我如何创建一个网络服务,用户可以在他们的 iPhone 中注册以连接/同步他们的日程/约会?
我感谢所有的评论。谢谢。
we have a web application that has a built-in appointment/scheduler feature for our clients. how can i create a web service that users can register in their iPhone to hookup/sync with their schedule/appointments?
I appreciate all comments. thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 APNS 来实现此目的,每当安排新的约会时,您都会向您的 iPhone 应用程序发送通知,以使用之前用于获取数据的同一 Web 服务来同步最新数据。
You can use APNS for this purpose, whenever a new appointment is scheduled you will send a notification to your iPhone app to sync the latest data using the same web service that is used earlier to fetch data.