我正在开发一个适用于Google域名的密码重置应用程序。我使用.net配置API。我g目结舌并尝试了一切,但没有找到任何方法来更改密码。
以下链接使用https://developers.google.com/google-apps/provisioning/#updating_a_user_account
答案 0 :(得分:3)
我发现了一种非常简单的方法
AppsService service = new AppsService("domain", "adminusername", "adminpassword");
UserEntry user = service.RetrieveUser("viresh1");
user.Login.Password = "newpassword";
service.UpdateUser(user);