このURL(https://developers.google.com/admin-sdk/directory/v1/quickstart/php)から次の手順を実行しました。PHP Google Directory API 2.0でユーザーのパスワードを更新できません
ユーザーのリストが動作しています!
しかし、与えられたUSERKEYの新しいパスワードを更新している間、私たちはエラー以下になっています
PHP Catchable fatal error: Argument 2 passed to Google_Service_Directory_Resource_Users::update() must be an instance of Google_Service_Directory_User, none given, called in /var/www/passwords_change/danish/quickstart.php on line 85 and defined in /var/www/passwords_change/danish/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/Users.php on line 162
私は私のコードを添付しています。
注:有効な資格情報を持っています...!
<?php
require_once __DIR__ . '/vendor/autoload.php';
define('APPLICATION_NAME', 'Directory API PHP Quickstart');
define('CREDENTIALS_PATH', '/home/ramesh/.credentials/admin-directory_v1-php-quickstart.json');
define('CLIENT_SECRET_PATH', __DIR__ . '/client_secret.json');
// If modifying these scopes, delete your previously saved credentials
// at ~/.credentials/admin-directory_v1-php-quickstart.json
define('SCOPES', implode(' ', array(
Google_Service_Directory::ADMIN_DIRECTORY_USER_READONLY)
));
if (php_sapi_name() != 'cli') {
throw new Exception('This application must be run on the command line.');
}
/**
* Returns an authorized API client.
* @return Google_Client the authorized client object
*/
function getClient() {
$client = new Google_Client();
$client->setApplicationName(APPLICATION_NAME);
$client->setScopes(SCOPES);
$client->setAuthConfig(CLIENT_SECRET_PATH);
$client->setAccessType('offline');
// Load previously authorized credentials from a file.
$credentialsPath = expandHomeDirectory(CREDENTIALS_PATH);
if (file_exists($credentialsPath)) {
$accessToken = json_decode(file_get_contents($credentialsPath), true);
} else {
// Request authorization from the user.
$authUrl = $client->createAuthUrl();
printf("Open the following link in your browser:\n%s\n", $authUrl);
print 'Enter verification code: ';
$authCode = trim(fgets(STDIN));
// Exchange authorization code for an access token.
$accessToken = $client->fetchAccessTokenWithAuthCode($authCode);
// Store the credentials to disk.
if(!file_exists(dirname($credentialsPath))) {
mkdir(dirname($credentialsPath), 0700, true);
}
file_put_contents($credentialsPath, json_encode($accessToken));
printf("Credentials saved to %s\n", $credentialsPath);
}
$client->setAccessToken($accessToken);
// Refresh the token if it's expired.
if ($client->isAccessTokenExpired()) {
$client->fetchAccessTokenWithRefreshToken($client->getRefreshToken());
file_put_contents($credentialsPath, json_encode($client->getAccessToken()));
}
return $client;
}
/**
* Expands the home directory alias '~' to the full path.
* @param string $path the path to expand.
* @return string the expanded path.
*/
function expandHomeDirectory($path) {
$homeDirectory = getenv('HOME');
if (empty($homeDirectory)) {
$homeDirectory = getenv('HOMEDRIVE') . getenv('HOMEPATH');
}
return str_replace('~', realpath($homeDirectory), $path);
}
// Get the API client and construct the service object.
$client = getClient();
$service = new Google_Service_Directory($client);
$optParams = array(
'userKey' => '[email protected]',
);
$password = crypt ("Password", $salt="IamSecretkey");
$obj = new Google_Service_Directory_User;
try{
$results = $service->users->update($optParams);
} catch(Error $ex) {
print_r($ex->getMessage());
}
echo "<pre>";
print_r($results);
exit;
/*
// Print the first 10 users in the domain.
$optParams = array(
'customer' => 'my_customer',
'maxResults' => 10,
'orderBy' => 'email',
);
$results = $service->users->listUsers($optParams);
if (count($results->getUsers()) == 0) {
print "No users found.\n";
} else {
print "Users:\n";
foreach ($results->getUsers() as $user) {
printf("%s (%s)\n", $user->getPrimaryEmail(),
$user->getName()->getFullName());
}
}
*/
ありがとうございました!できます!しかし、403:管理者アカウントを使用していますが、不十分な権限を取得しています。 PHPの致命的なエラー:メッセージでキャッチされない例外 'Google_Service_Exception'「{ "エラー":{ "エラー":[ { "ドメイン": "グローバル"、 "理由": "あなたの参照のためのエラーをペーストinsufficientPermissions」、 "メッセージ": "十分な権限" } ]、 "コード":403、 "メッセージ": "十分な権限" }} –
あなたが右のスコープを入れていないためです。 'define( 'SCOPES'、implode( ''、array(Google_Service_Directory :: ADMIN_DIRECTORY_USER_READONLY)));を' define( 'スコープ'、implode( ''、配列(Google_Service_Directory :: ADMIN_DIRECTORY_USER)))に変更してください。私が言ったように、ドキュメンテーションはこれを詳細に説明します。 – Morfinismo