1

我正在使用服务帐户来委派域范围的安全性,以便通过 Directory API 和 PHP 客户端库从我们的 Google Apps for Education 实例中提取用户列表。

我相当确定我的服务帐户具有所有正确的安全性,因为它能够使用API 参考的“试用”功能提取列表。

所以,在这一点上,一切都指向我的代码的问题,但我似乎无法弄清楚在哪里:

<?php
require 'vendor/autoload.php';

$clientEmail = '<>@developer.gserviceaccount.com';
$privateKey = file_get_contents(__DIR__ . '/access.p12');
$scopes = array(
    'https://www.googleapis.com/auth/admin.directory.user.readonly',
);

$credentials = new Google_Auth_AssertionCredentials($clientEmail, $scopes, $privateKey);
$credentials->sub = 'service.account@my.domain';

$client = new Google_Client();
$client->setAssertionCredentials($credentials);

if ($client->getAuth()->isAccessTokenExpired()) 
{
    $client->getAuth()->refreshTokenWithAssertion();
}

$directory = new Google_Service_Directory($client);

$result = $directory->users->listUsers(array('domain' => 'my.domain'));

var_dump($result);

上面的代码抛出以下错误:

Fatal error: Uncaught exception 'Google_Auth_Exception' with message 'Error refreshing the OAuth2 token, message: ' in C:\wamp\www\quick\vendor\google\apiclient\src\Google\Auth\OAuth2.php on line 358

Google_Auth_Exception: Error refreshing the OAuth2 token, message: '{
  "error" : "access_denied",
  "error_description" : "Requested client not authorized."
}' in C:\wamp\www\quick\vendor\google\apiclient\src\Google\Auth\OAuth2.php on line 358

Call Stack:
    0.0010     132792   1. {main}() C:\wamp\www\quick\index.php:0
    0.0260    1060248   2. Google_Auth_OAuth2->refreshTokenWithAssertion() C:\wamp\www\quick\index.php:18
    0.9230    1163560   3. Google_Auth_OAuth2->refreshTokenRequest() C:\wamp\www\quick\vendor\google\apiclient\src\Google\Auth\OAuth2.php:309
4

1 回答 1

1

调用堆栈应标识发生此错误的特定行。请注意,堆栈中的第二行似乎指向脚本的第 18 行,其中代码确实与 OAuth 验证有关:

$client->getAuth()->refreshTokenWithAssertion();

换句话说,当您尝试 refreshTokenWithAssertion 时,Google 会说“access_denied 因为请求的客户端未授权”。如果您试图确定您在脚本中的哪个位置遇到了错误,我认为这应该可以回答您的问题。

如果你想弄清楚为什么会出错,我会在谷歌上搜索一些refreshTokenWithAssertion错误信息,看看你是否发现其他开发人员正在解决类似的问题。例如,通过进行谷歌搜索,我在 SO 上找到了可能对您有所帮助的其他页面。

祝你好运!

于 2015-05-11T17:15:50.363 回答