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?