Consuming a rss to google api

I am consuming a RSS follows

<script type="text/javascript">
  google.load("feeds", "1");
  function initialize() {
    var feed = new google.feeds.Feed("http://www.maratondesantiago.com/feed/");
    feed.load(function(result) {
      if (!result.error) {
        var container = document.getElementById("feed");
        for (var i = 0; i < result.feed.entries.length; i++) {
          var entry = result.feed.entries[i];
          console.log(entry);
        }
      }
    });
  }
  google.setOnLoadCallback(initialize);
</script>

The problem is that in the browser all good works, but not on the device. Not reflect the news, plus I debugeo with GapDebug tool and in no event will launch any kind of error. Try also generate consumption in method deviceReady but neither worked. Some angular own way of doing it?

1 Like

i has the same error…