我想通过PHP页面使用Google Insight API中的数据。 (这是documentation)
例如,我如何使用Google Insight返回的“numberJsResources”?
$jsonString = curl "https://www.googleapis.com/pagespeedonline/v1/runPagespeed?url=http://code.google.com/speed/page-speed/&key=MyAPIKey";
$obj = json_decode($jsonString);
echo $obj->responseCode;
答案 0 :(得分:2)
你错误地使用curl。
$ch = curl_init("https://www.googleapis.com/pagespeedonline/v1/runPagespeed?url=http://code.google.com/speed/page-speed/&key=MyAPIKey");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$res = curl_exec($ch);
$obj = json_decode($res, true);
echo $obj['pageStats']['numberJsResources'];