使用 PHP 客户端库获取 Google 应用程序帐户的所有用户密码

Get All Users password of Google Apps Account Using PHP Client Library

我知道如果我尝试收到除密码以外的帐户详细信息,人们会得到帐户 details.But。

我的代码是:

$optParams = array(
  //'customer' => 'www2',
  'customer' => 'my_customer',
   'maxResults' => 50,
   'orderBy' => 'email',
);
$results = $service->users->listUsers($optParams);

请帮帮我

gsuite user resource 确实包含密码归档。但是,密码不是以明文形式存储的,它们是散列值。看到这个哈希值对你没有帮助。

即使是 gsuite 管理员,您也永远看不到用户密码。一个人的密码是他们自己的,即使是管理员也无权查看。

虽然 user update 将允许您设置用户密码,但此字段是可写的,但这并不意味着它是可读的。

这在文档中有明确说明 (user resource )

The password value is never returned in the API's response body.