以下脚本由google api php客户端提供
<?php
require_once 'src/Google_Client.php';
require_once 'src/contrib/Google_CustomsearchService.php';
session_start();
$client = new Google_Client();
$client->setApplicationName('Google CustomSearch PHP Starter Application');
$client->setDeveloperKey('API KEY');
$search = new Google_CustomsearchService($client);
try{
$result = $search->cse->listCse('burrito', array('cx' => 'SEARCH ENGINE ID'));
print "<pre>" .print_r($result, true) . "</pre>";
}catch(Exception $e)
{
echo("<pre>".print_r($e,true)."</pre>");
}
?>
执行脚本时,即使custom search
在选项卡中启用,也会显示以下错误services
。
Google_ServiceException Object
(
[errors:protected] => Array
(
[0] => Array
(
[domain] => usageLimits
[reason] => accessNotConfigured
[message] => Access Not Configured
)
)