0

以下脚本由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
                )

        )
4

2 回答 2

1

当您尝试从 API 控制台访问尚未启用的 API 时,也可能会发生此错误。

转到API 控制台并首先从那里启用 API。

于 2013-08-10T11:50:04.173 回答
0

https://code.google.com/apis/console

注册您的 IPv6 地址而不是 IPv4

于 2013-06-26T03:57:00.223 回答