Craigslist Notifications App that sends new postings to my email/sms/rss

618 Views Asked by At

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.

3

There are 3 best solutions below

0
On

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.

1
On

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. :)

0
On

I'm the developer of CraigsNotifica for android. The idea is to use AlarmManager like droidin.net said.