Getting raw XML data from a Feedburner RSS feed

前端 未结 10 2162
轮回少年
轮回少年 2021-02-05 00:22

For an Android app I am currently working on, I would like to be able to parse raw XML data from an RSS feed and display it. The RSS feed in question uses Feedburner for publish

相关标签:
10条回答
  • 2021-02-05 00:52

    Try adding fmt=xml to your url. For ex: http://feeds.feedburner.com/blogname?fmt=xml.

    I am having other strange problems for iOS SDK using XPathQuery to extract data from the response.

    0 讨论(0)
  • 2021-02-05 00:55

    The original version of an "unburned" RSS feed can be extracted by viewing the Feedburner feed's source code (or downloading it and viewed as a text file). The original feed is provided between <link>...</link> tag of the <channel> element. It can also be extracted via JavaScript or PHP using XML DOM search.

    0 讨论(0)
  • 2021-02-05 01:00

    Its quite easy,After searching for here n there I finally found one solution

    http://www.blogger.com/feeds/blogId/posts/default
    

    Note: To knw your Blog Id, First, sign in to Blogger. Then choose the blog whose ID you want to find, and click on its name.

    From any of the posting, settings, or template pages, you can find your blog's ID number if you look at the URL in the address bar. At the end of the address, you can see that it says blogID=XXXXXX where the X's represent your blog's ID.

    0 讨论(0)
  • 2021-02-05 01:04

    For the people who still haven't figured it out:

    Send an HTTP request without any headers (i.e. don't do it from a browser) to receive the raw RSS feed.

    0 讨论(0)
提交回复
热议问题