<?php

class cURL {

    var $headers;
    var $user_agent;

    function cURL() {
        $this->headers[] = 'Connection: Keep-Alive';
        $this->headers[] = 'Content-type: application/x-www-form-urlencoded;charset=UTF-8';
        $this->user_agent = 'Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0)';
    }

    function post($url, $data) {
        $process = curl_init($url);
        curl_setopt($process, CURLOPT_HTTPHEADER, $this->headers);
        curl_setopt($process, CURLOPT_HEADER, 1);
        curl_setopt($process, CURLOPT_USERAGENT, $this->user_agent);
        curl_setopt($process, CURLOPT_TIMEOUT, 30);
        curl_setopt($process, CURLOPT_POSTFIELDS, $data);

        curl_setopt($process, CURLOPT_RETURNTRANSFER, 1);
        curl_setopt($process, CURLOPT_FOLLOWLOCATION, 1);
        curl_setopt($process, CURLOPT_POST, 1);
        $return = curl_exec($process);
        $info = curl_getinfo($process);
        curl_close($process);
        return $info;
    }

}

$postdata = "
<?xml version=\"1.0\" encoding=\"utf-8\"?>\n

<rdf:RDF xmlns=\"http://purl.org/rss/1.0/\"
         xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\"
         xmlns:cl=\"http://www.craigslist.org/about/cl-bulk-ns/1.0\">

  <channel>
    <items>
      <rdf:li rdf:resource=\"NYCBrokerHousingSample1\"/>
      <rdf:li rdf:resource=\"NYCBrokerHousingSample2\"/>
    </items>

    <cl:auth username=\"mymail@gmail.com\"
             password=\"xxxxxx\"

  </channel>
  <item rdf:about=\"NYCBrokerHousingSample1\">
    <cl:category>apa</cl:category>
    <cl:area>chi</cl:area>
    <cl:subarea>chc</cl:subarea>
    <cl:neighborhood>Lakeview</cl:neighborhood>
    <cl:housingInfo price=\"1450\"
                    bedrooms=\"0\"
                    sqft=\"600\"/>
    <cl:replyEmail privacy=\"C\">mymail@gmail.com</cl:replyEmail>
    <cl:brokerInfo companyName=\"Joe Sample and Associates\"
                   feeDisclosure=\"fee disclosure here\" />
    <title>Spacious Sunny Studio in Upper West Side</title>
    <description><![CDATA[
      posting body here
    ]]></description>
  </item>



</rdf:RDF>
";


$cc = new cURL();

$url = 'https://post.craigslist.org/bulk-rss/post';

$output = $cc->post($url, $postdata);

//echo $output;

print_r($output);
?>

Hello, I read on webpages such as MODERATED please review the forum posting rules that there is an one-click posting option for craigslist. As I researched further, I found this page: http://www.craigslist.org/about/bulk...#sample_client

It seems like you can send a xml file with your listing information to their server via HTTPS Request. Responses a Server Status = 100??! I'm not sure if you need a special account or kind of an agreement with craigslist to be allowed to use a bulk posting client.

If anybody has an idea how to get this to work, I really would appreciate it.

Thank. HP

link|improve this question
You copy pasted this from somewhere else? I read on webpages such as MODERATED please review the forum posting rules – Albireo Jun 29 '11 at 8:44
Asking for help to spam the web? Move along, nothing to see here. – Raoul Jun 29 '11 at 8:45
Link is also a 404. AFAIK, you are not allowed to automate posts. I've seen this question many times and it always ends up in "Read the TOS" and is closed. Do you have explicit permission from them to do this? Almost definitely not. – Wesley Murch Jun 29 '11 at 8:46
feedback

closed as not constructive by Wesley Murch, James Anderson, mauris, EJP, Graviton Jun 30 '11 at 6:42

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

1 Answer

I'm afraid it's against their terms of use:

-- snip --
You agree not to post, email, or otherwise make available Content:

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.
-- snip --

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

link|improve this answer
feedback

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