Convert RSS to JSON Google Feed API

1

Some time ago I was using the google service google feed api but this service has been deprecated, I would like to know if there is any solution to replace, I'm doing so with jQuery:

 $.ajax({
        url: 'https://ajax.googleapis.com/ajax/services/feed/load?v=2.0&q=https%3A%2F%2Fwww.theguardian.com%2Finternational%2Frss',
        dataType: 'jsonp',
        success: function (data) {}
 });

Is there any plugin or in the $.ajax method itself that I can do?

    
asked by anonymous 25.01.2017 / 12:13

1 answer

1

One alternative I found was to use link and looked like this:

    $.ajax({
        url: 'http://ibacor.com/api/xml-converter?u=http://rss.uol.com.br/feed/noticias.xml&f=json',
        dataType: 'json',
        success: function (data) {}
    });

Obs. I'm using the UOL feed.

    
25.01.2017 / 14:21