how to create an rss feed using JSON?

Sabrina picture Sabrina · May 4, 2011 · Viewed 7.5k times · Source

I like to know how I could create a rss feed with json because right now I got to create one by following the example of kitchen sink

can you guide me please

Answer

Quentin picture Quentin · May 4, 2011
  1. Pick a programming language (I'd go with Perl as I know it and I know the modules that can do this)
  2. Pick a JSON parser (I'd use JSON::Any)
  3. Pick a module that can build an RSS feed (I'd use XML::RSS)
  4. Get an HTTP client if you need it (LWP::Simple will probably do for this)
  5. Write some glue code to stick them together.