Convert RSS to JSON Google Feed API

Asked

Viewed 325 times

1

Some time ago I was using the google service google feed api however this service has been discontinued, I wonder if there is any solution to replace, I am 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 a plugin or in the method itself $.ajax something I can do?

  • The problem is converting rss to json or the solution to the service that has been discontinued?

  • I would like a similar service, found here and solved for me: http://ibacor.com/api#Bcr-xml-converter

  • Answer your question with the discovery @Lennons.Bueno, to make the solution available to other users! :)

  • @Lucascosta answered :)

1 answer

1


an alternative I found was to use the http://ibacor.com/api#Bcr-xml-converter and stayed 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) {}
    });

Note. I am using the UOL feed.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.