Skip to content

Instantly share code, notes, and snippets.

@rhyskentish
Created October 8, 2019 10:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rhyskentish/52f7e74af6d9076023aaeea298f1c886 to your computer and use it in GitHub Desktop.
Save rhyskentish/52f7e74af6d9076023aaeea298f1c886 to your computer and use it in GitHub Desktop.
var response = UrlFetchApp.fetch("https://www.googleapis.com/androidpublisher/v3/applications/your_package_name/reviews?access_token=your_auth_token");
// Parse the JSON reply
var json = response.getContentText();
var data = JSON.parse(json);
var ss = SpreadsheetApp.getActiveSpreadsheet();
var sheet = ss.getActiveSheet();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment