http://www.craigslist.org/about/bulk_posting_interface - it says: "New posts are sent to Craigslist in RSS format with additional Craigslist dependent elements via HTTPS POST"
How to submit a form that submits rss data?
I was hoping just something like this:
<form action="https://post.craigslist.org/bulk-rss/post" type="post"> <input type="hidden" name="area" value="richmond" /> <input type="hidden" name="category" value="free" /> <input type="hidden" name="reply-email" value=" x@y.com " /> </form>
But it says that I have to provide the data in RSS format.
So something like this?
<form action="https://post.craigslist.org/bulk-rss/post" type="post"> <input type="hidden" value="{all the RSS data goes here??}" /> </form>
Any help is greatly appreciated. In the end, I would like to create an Android application that goes to Criagslist, but just want to get a simple html form to check the proof of concept for now. Thanks!
source share