Google Feed API is no longer available
With 2nd December 2015 fetching RSS Feeds via the Google Feed API (deprecated by April 2015) doesn't work anymore! Some of you may also received the error message that Google Feed API is no longer available. We were using it for our Blog and got this JSON Response:
https://ajax.googleapis.com/ajax/services/feed/load?v=1.0&q=https://lingohub.com/blog/feed/ {"responseData": null, "responseDetails": "This API is no longer available.", "responseStatus": 403}
At first we were looking for alternatives, until we realized we really just want to convert the RSS to JSON to use it in our JavaScript. What I consider to be the best solution (if you have access to the source content/server) is to change the response format at the origin.
How we fixed the problem
Our fastest and easiest solution: We installed the Wordpress Plugin Feed JSON so that our blog serves its feed also in JSON, like this:
https://lingohub.com/blog/feed/json
Small changes on the front-end and we were good to go:
[gist id="3dd336f5a9a10a2dd383"]
Alternatives
If you don't have access to the server configuration, I would suggest
- to keep track of this Stackoverflow post
- use another service like Superfeedr
Latest articles
