Skip to content

Instantly share code, notes, and snippets.

@arijitMondal
Created August 26, 2020 03:51
Show Gist options
  • Save arijitMondal/219084169ab0f3275c4fb97c02a085f2 to your computer and use it in GitHub Desktop.
Save arijitMondal/219084169ab0f3275c4fb97c02a085f2 to your computer and use it in GitHub Desktop.
function getPageSpeedInfo(strategy) {
var pageSpeedUrl = 'https://www.googleapis.com/pagespeedonline/v5/runPagespeed?url=' + urlToMonitor + '&key=' + pageSpeedApiKey + '&strategy=' + strategy;
var response = UrlFetchApp.fetch(pageSpeedUrl);
var json = response.getContentText();
return JSON.parse(json);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment