Craigslist 通知应用程序将新帖子发送到我的电子邮件/短信/RSS
构建将新帖子直接发送到我的电子邮件/短信/RSS 的“Craigslist 通知”软件的最佳方法是什么?
例如,我不断刷新“免费”类别等待新的帖子。
What are the best approaches to build a "Craigslist Notifications" software that shoots new postings directly to my email/sms/rss?
For example, I am constantly refreshing the "Free" category waiting for new postings.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
对于 iPhone 我可以说任何东西,但在 Android 上我会使用 AlarmManager 来定期检查资源(在您的情况下为 Craigslist)是否有更新。一旦检测到更新,就会进行处理并发布到 RSS 或其他内容。
I can say anything for iPhone but on Android I would use AlarmManager to to periodically check the resource (Craigslist in your case) for updates. Once update is detected process and post to RSS or whatever.
有一个适用于 Android 的“craigslist 通知”应用程序,您可以根据您设置的关键字和价格参数每隔几分钟设置新帖子的通知。我会看看该应用程序是如何编码的,因为它是用开源编写的。 :)
There' s a "craigslist notifications" application for android where you can setup notifications every couple minutes for new postings based on the keywords and price parameters you set. I would look at how that application is coded since it is written in open source. :)
我是 Android 版 CraigsNotifica 的开发者。这个想法是像 droidin.net 所说的那样使用 AlarmManager。
I'm the developer of CraigsNotifica for android. The idea is to use AlarmManager like droidin.net said.