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
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
as far as i know, rss is always XML. You should parse the Json to a correct RSS structure. check this out: http://www.xn--schler-dya.net/blog/2008/01/26/converting-json-to-xml-and-xml-to-json/
here is how rss should look: http://www.landofcode.com/rss-tutorials/rss-structure.php
You don't. RSS is an XML-based technology.
RSS is a dialect of XML. All RSS files must conform to the XML 1.0 specification, as published on the World Wide Web Consortium (W3C) website.
You might as well ask "how can I write a CSS file with JSON?"
Using titanium if you want to build and XML like the one in the KitcheSink example you need to use XML. If you have JSON you could parse it yourself or use the Ti.Yahoo.yql
to conver the JSON to XML then do the feed the same as the KitchenSink example.
Ti.Yahoo.yql
to convert from XML to JSON then. –
Durarte RSS is based on XML. You cannot create one using JSON
© 2022 - 2024 — McMap. All rights reserved.