Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In the rss xml file I have my channel and several items. Typically the item has a title, link, description and maybe time or something. Can I put my own tags in there with additional data I want to send?

Example: Say if was a doing a rss feed to contains weather/temperature info, I might have several item tags, with one for each city. And then in the description I would have my string description. But if I wanted to also put separate tags for temperature, windspeed, high, low, inchesOfRain, etc too I could have something parse that differently on some other client.

share|improve this question

3 Answers

Yes you can - create a new namespace for your tags (it's standard XML).

An example:

<?xml version="1.0"?>
<rss version="2.0" xmlns:w="http://tempuri.org">
    <channel>
        ...
        <item>
            <title>Item title</title>
            <description>...</description>
            <w:temperature>...</w:temperature>
            <w:windspeed>...</w:windspeed>
        </item>
    </channel>
</rss>

That said, perhaps you should do a little searching first to see if there's an existing format that meets your needs. Standards == good :)

See http://www.feedforall.com/namespaces.htm, http://base.google.co.uk/support/bin/answer.py?answer=58085&hl=en_GB

share|improve this answer
Just for beginners like me that never dealt with RSS, check out this namespace tutorial. E.g. I did not know that you can define any URL after xmlns:myns="whatsoever.abc/rss-scheme";, the page at this URL should only hold information on the namespace for humans. – Echt Einfach TV Feb 15 at 8:53

Is this what you're looking for?

http://cyber.law.harvard.edu/rss/rss.html#extendingRss

I think Atom has something similar too. You can look at the spec for Atom here:

http://tools.ietf.org/rfc/rfc4287.txt

share|improve this answer

If you want an example of weather RSS feeds, you should definitely take a look at the RSS feeds that are produced by the Weather channel at http://www.weather.com

I remember using those a few years ago to generate weather widgets for a small city's website I helped produce. We would parse out the RSS feed to get the temperature and cloud coverage of our specific zip code's weather.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.