我正在新闻网站上工作,我想使用 Restful 调用 WebLogs 向博客发布新新闻和新闻更新。 com api #7
由于黑白调用的持续时间可能不少于 30 分钟,这就是为什么我想使用 RSS 聚合器推送批量更新。
我找到了以下文件
http://getaconnect.com/rss/category/queued/
格式为其中项目可以是多个
<Channel>
<item>
</item>
<item>
</item>
</Channel>
示例对博客 ping 服务器的 HTTP GET 请求:
http://rpc.weblogs.com/pingSiteForm?name=InfraBlog&url=http%3A%2F%2TestRss.com
我的问题是,如果我 ping 并提供 rss 文件,然后在 30 后我应该用新内容更新同一文件吗?几分钟后我必须提供单独的文件。
另一个问题是,如果我想更新已提交新闻的文本/位置,我该怎么做?
最后一个问题是有什么合适的API可以在java中生成rsss吗?
I am working on news website and I want to publish new news and news updates to weblog using Restful call WebLogs.com api #7
As time duration b/w calls may not less then 30 mins thats why i want to push bulk updates using RSS aggregator.
I found the following document
http://getaconnect.com/rss/category/queued/
in the format of where item may be multiple
<Channel>
<item>
</item>
<item>
</item>
</Channel>
Example HTTP GET request to weblog ping server:
http://rpc.weblogs.com/pingSiteForm?name=InfraBlog&url=http%3A%2F%2TestRss.com
My question is if i ping and provide rss file then after 30 mins should i update the same file with new contents to i have to provide separate file.
Another question is if i would like to update text/location of already submitted news how can i do it ?
Last question is any suitable API for rsss generate in java ?
发布评论
评论(1)
创建RSS数据并将其提交到weblong ping服务器。
create rss data and submit it to weblong ping server.