4
http://www.craigslist.org/about/bulk_posting_interface - 它說,Craigslist API - 如何發佈RSS數據?
如何發佈形式通過RSS數據「的新帖子都通過HTTPS POST其他特定Craigslist的元素提交給Craigslist的RSS格式」?
我希望只是有這樣的事情:
<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="[email protected]" />
</form>
但是,它說我必須提供RSS格式的數據。
那麼這是這樣的東西?
<form action="https://post.craigslist.org/bulk-rss/post" type="post">
<input type="hidden" value="{all the RSS data goes here??}" />
</form>
任何幫助是非常讚賞。最終,我想構建一個發佈到Criagslist的Android應用程序,但只想獲得一個簡單的HTML表單來測試現在的概念證明。謝謝!