Reputation: 15533
We can track "RATINGS & REVIEWS" at Google Play Developer Console for our android apps(as an admin). I wonder if it is possible to get these "RATINGS & REVIEWS" programmatically(i.e. getting as json or rss)? Or should I try to write a code block which parses that page?
Edit: I've written and I'm currently using my parser. But I think Google should give use an official solution for this.
Upvotes: 6
Views: 3236
Reputation: 15533
Now it is available. Thanks Google.
Ratings and reviews are also available for programmatic access through Google Cloud Storage and the gsutil tool. Your data, updated daily, is stored in this private bucket:
Edit 05.30.2016: At io16 Google Play Review Api is announced. Also official app for android; Google Play Developer Console App
Upvotes: 4
Reputation: 2593
You check this project. It downloads all reviews using gsutil and then sends you an email and/or a Slack message. https://github.com/rboundi/interstellar
It's very simple to setup and you can run it as a cronjob.
Upvotes: 1
Reputation: 3464
I don't believe the console has an RSS feed.
There's a handy Chrome extension(by Google, in fact) here: https://chrome.google.com/webstore/detail/rss-subscription-extensio/nlbjncdgjeocebhnmkbbbdekmmmcbfjd which you can use to pull RSS feeds out of pages that might not necessarily tell you they are there. Appreciate this doesn't help for this question but it might come in handy in future :)
Upvotes: 2