There are various options for this. There are basically 3 main tasks you need to do: 1. fetch the feed 2. parse the feed 3. render the results
To fetch the feed you can use curl, or file_get_contents if you have allow_url_fopen turned on.
To parse the feed, if the feed is in RSS format you can use the simplepie library which comes bundled with Joomla, it includes various functions for reading RSS and atom feeds (it will also fetch the feed). Otherwise you can use simpleXML to parse the feed yourself.
What you do with it then is up to you.
There is also SOAP, which I have only a sketchy knowledge of.
On Monday, 29 October 2012 15:08:33 UTC, xalibeut wrote:
Hi,
any idea/example on how to build a joomla module that will consume an external webservice returning json/xml data?
Thanks for your help.