I have searched high and low and have not been able to find a definite answer to this question.

Does anyone know how developers auto-post to CraigsList using PHP (or CodeIgniter)?

link|improve this question

Does it violate the user-agreement? I honestly don't know and am curious. – Mike B Nov 23 '09 at 19:36
1  
If you do this, expect a personal email from Craig himself. I know several people who have received them. They really frown on automated use of their site. – Frank Farmer Nov 23 '09 at 19:59
1  
@frank please remove your criticism and stick to the question – JOE SKEET Mar 29 '11 at 17:43
feedback

3 Answers

This may violate the terms of service for craigslist, specifically under the conduct section:

Additionally, you agree not to:

y) use any form of automated device or computer program that enables the submission of postings on craigslist without each posting being manually entered by the author thereof (an "automated posting device"), including without limitation, the use of any such automated posting device to submit postings in bulk, or for automatic submission of postings at regular intervals.

link|improve this answer
I have seen web application selling this service, but I don't know of a Craigslist API and was wondering if maybe these companies are under service contract with Craigslist much like email-blast services are with email service providers (i.e. Gmail, Yahoo Mail, etc.) – Torez Nov 24 '09 at 20:31
please stick to answering the question and not adding your irrelevant comments – JOE SKEET Mar 29 '11 at 17:44
feedback

http://www.craigslist.org/about/terms.of.use:

... you agree not to:

y) use any form of automated device or computer program that enables the submission of postings on craigslist without each posting being manually entered by the author thereof (an "automated posting device"), including without limitation, the use of any such automated posting device to submit postings in bulk, or for automatic submission of postings at regular intervals.

link|improve this answer
feedback

Right, the only thing against the terms of service is the auto part, you can do all of it except hitting the submit for them. I have a reference opensource implementation of a tool that assists in Craigslist postings using the Catalyst framework for Perl. The tool's name is Craiglickr.

http://github.com/EvanCarroll/Craiglickr

The biggest thing is deciding what you want to assist with -- typically items in the For Sale category. Then you have to request a forum from CL, then utilize their tokens in an order-specific fashion when you serve out the page for the client to post to them.

My tool adds things like the ability to load the page from a template, and WYSIWYG editing of the post (via CEdit). It it almost fully configurable using the yaml configuration file it comes with.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.