【发布时间】:2011-09-23 17:30:57
【问题描述】:
http://www.craigslist.org/about/bulk_posting_interface - 它说,“新帖子以 RSS 格式提交到 craigslist,并通过 HTTPS POST 附加特定于 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="x@y.com" />
</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 表单来测试概念证明。谢谢!
【问题讨论】: