I'm using google feeds API to read RSS-feeds from Libsyn.
As i've noticed Google parses the feed itself and therefore excludes a lot of stuff. Is there any way to change this so that it would include an image link included in the RSS-feed?
var feed = new google.feeds.Feed('http://podiet.libsyn.com/rss');
feed.setNumEntries(25);
feed.load(function (data) {
console.log(data);
});
It's all working perfectly fine except the fact that some of the things in the feed are excluded.
Set:
Then the image tags will be included. They can be extracted like this for example: