我正在尝试使用服务帐户访问google webmaster api。但我无法做到 PHP致命错误:未捕获的异常' Google_Auth_Exception'消息'错误刷新OAuth2令牌,消息:' { "错误" :" invalid_grant" }''
我尝试了其他帖子中提到的解决方案, 1.安装了ntp 2. date_default_timezone_set(“Asia / Kolkata”); 3. sudo ntpdate pool.ntp.org
但都没有效果。请有人帮忙。我被困了。
require_once realpath(dirname(__FILE__) . '/google-api-php-client-master/src/Google/autoload.php');
session_start();
$client_email = '123456789-abcdebsbjf@developer.gserviceaccount.com';
$private_key = file_get_contents('Config/myproject.p12');
$scopes = array('https://www.googleapis.com/auth/webmasters');
$credentials = new Google_Auth_AssertionCredentials(
$client_email,
$scopes,
$private_key
);
$client = new Google_Client();
$client->setAssertionCredentials($credentials);
if ($client->getAuth()->isAccessTokenExpired()) {
$client->getAuth()->refreshTokenWithAssertion();
}
$service = new Google_Service_Webmasters($client);
$list = $service->sitemaps->listSitemaps("www.example.com");
print_r($list);
答案 0 :(得分:0)
经过一番挣扎,我自己解决了问题。在我提到相对路径的代码链接中是一个小小的愚蠢错误:
$private_key = file_get_contents('Config/myproject.p12');
当我用绝对路径替换它时,它起作用,即:
$private_key = file_get_contents(dirname(__FILE__) . '/Config/myproject.p12');