Skip to content

Instantly share code, notes, and snippets.

@bhowe
Last active August 29, 2015 14:15
Show Gist options
  • Select an option

  • Save bhowe/a5e34d1c09453036fa86 to your computer and use it in GitHub Desktop.

Select an option

Save bhowe/a5e34d1c09453036fa86 to your computer and use it in GitHub Desktop.
Pagespeed API
/*
Blake B Howe
http://blakebhowe.com
*/
$ch = curl_init("https://www.googleapis.com/pagespeedonline/v1/runPagespeed?url=http://wiseguystechnologies.com/&key=APIKEYHERE");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$res = curl_exec($ch);
$obj = json_decode($res, true);
var_dump($obj);
echo $obj['pageStats']['numberJsResources'];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment