1

我正在开发适用于 Google 域的密码重置应用程序。我使用了 .net 配置 API。我戴上眼镜并尝试了所有方法,但没有找到任何更改密码的方法。

使用以下链接https://developers.google.com/google-apps/provisioning/#updating_a_user_account

4

1 回答 1

3

我找到了一个非常简单的方法

 AppsService service = new AppsService("domain", "adminusername", "adminpassword");
  UserEntry user = service.RetrieveUser("viresh1");
  user.Login.Password = "newpassword";
  service.UpdateUser(user);
于 2013-04-12T06:55:34.400 回答