Hey everyone, I have a quick question. I want to build a web app for myself that will allow me to post stuff to Craigslist and retrieve postings from Craigslists. I am not doing this to spam Craigslist, I am just doing it to learn. My question is: Is this possible? If so, will knowing PHP be enough? Or will I also need to know how to use the cURL library? Thanks in advance for the help and advice.

link|improve this question

1  
Craigslist doesn't have an API, so you'll have to use screen-scraping. – Simon Brown Jun 3 '10 at 23:47
2  
Sure, just put your php file in their server and query their database. oh wait, you have limitations? – M28 Jun 4 '10 at 0:14
feedback

5 Answers

up vote 2 down vote accepted

I'm pretty sure Craigslist looks down on scrapers.

You will need to use cURL, or file_get_contents() if your host allows it.

cURL will be easier however, as you won't have to deal with context for POST stuff.

If you just want to learn and don't want to get into trouble (legal or ethical), scrape a site where you have permission of the site's owner. Or even easier, make your own site and then scrape it yourself (via HTTP).

link|improve this answer
2  
In other words: don't do it, you'll just get in trouble. Posting and retrieving from Craigslist via an app is, YES IT IS, useless. You can just go to the website itself to achieve the exact same result. – animuson Jun 3 '10 at 23:50
2  
That isn't true in the slightest. You can't get a callback if you post from the site itself; you can't preload the sites forms with data; you can't easily post multiple items from the site. All of this can be done with tools that I believe are totally legal. Look -- if you don't like people using tools -- fine; but your rather ridiculous inane comment doesn't add much to this conversation. – Evan Carroll Jun 4 '10 at 0:15
@Evan Carroll: As you posted above, you can't do anything for a third party, which means you can only use it for yourself. If you can only use it for yourself, you might as well just use the website, rendering your app useless. This kind of app just mimics functionality elsewhere, which is useful for a phone, but not for another website. – animuson Jun 4 '10 at 0:37
In the same sense that Microsoft Word twiddles bytes in the same way as ed therefore they are both equally useful - yes. And, it isn't that third parties can't use your tool -- it is that you can't use your tool for third parties. – Evan Carroll Jun 4 '10 at 0:41
feedback

PHP itself is just a language. It's the various modules that make it useful. This does include the cURL module. So yes, you'll need to know cURL as well.

link|improve this answer
feedback

A few comments:

  • There are a few posts relevant to accessing Craigslist on SO. I'd check those out if you haven't already.
  • I don't believe Craigslist has an official API. That would mean your exercises may violate some of their terms of use. Make sure and read through that first.
  • PHP isn't a requirement, if you decide to try interacting with their service. Pick your poison: PHP, ASP, CFM, Perl, .NET (any flavor), Java, etc.
  • cURL, like PHP, is only one method of interacting with an external service. Depending on the API, you can expect some languages to have their own libraries for interaction (e.g. SOAP, XML-RPC, AMF, Restful HTTP, etc.).

If you're looking to interact with an external service (for educational purposes) maybe something like Del.icio.us may be of more use.

Good luck.

link|improve this answer
cURL isn't a "method" it is a library, PHP is a language that uses cURL. Perl tends to prefer libwww, but there are cURL bindings too. – Evan Carroll Jun 4 '10 at 0:09
@Evan Carroll, "method", as in behavior or opportunity. cURL is not unique to PHP. I was thinking more generically. – Inkspeak Jun 4 '10 at 0:13
feedback

For a most readable English, Craigslist most likely does NOT allows you to post from your app there, unless they give you "privileges" to do so.

Regarding your question about the necessary knowledge to accomplish something like that:

Yes, it's possible to post from one app to another just using php!

link|improve this answer
That's poor wording, it sounds like you're saying that Craigslist does allow you to do that. – animuson Jun 3 '10 at 23:47
@animuson, humm... perhaps French? – Zuul Jun 3 '10 at 23:58
@animuson, There you go... a nice more readable answer ;) – Zuul Jun 4 '10 at 0:04
This isn't true, as I read it, Craigslist TOS do not prohibit tools that assist in posting -- they do however prohibit "Posting Agents" or those that post for third parties. – Evan Carroll Jun 4 '10 at 0:08
1  
@Evan Carroll, I'm going to agree with you... – Zuul Jun 4 '10 at 0:31
show 4 more comments
feedback

I would highly suggest you reference Craiglickr in your pursuit. While I have no desire to help you port it to PHP, it is the only open source tool that I personally know of that has anything to do with Cragslist. The short answer: yes, it is possible in PHP. No it won't be easy. And, PHP's lack of an event-driven framework will make it especially challenging.

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.