以下のコードに示すように、すべての組織ユーザーを取得しようとしています。
OrganizationService service = new OrganizationService(domain, applicationName);
service.setUserCredentials(adminEmail, adminPassword);
AppsExtendedFeed feed=service.RetrieveAllOrganizationUsers(customerID);
foreach (AppsExtendedEntry unit in feed.Entries)
{
userList.Add(unit.getPropertyByName("memberId")); // Add the users to the ArrayList
}
ただし、getPropertyByName に渡されるパラメーター (「memberId」) が間違っているように見えるため、失敗しています。
OU 内のすべてのユーザーを電子メール アドレスの形式で返したい場合、正しいパラメーターを教えてもらえますか? または、組織内のすべてのユーザーを取得する別の方法はありますか? どんな助けでも大歓迎です。ありがとう。
よろしくライアン