Markusr
unread,Nov 30, 2011, 7:06:28 PM11/30/11Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to google-app...@googlegroups.com
Good day,
I am writing an in-house user management application.
I am able to connect to the AppsService and get a complete list of users.
appservice = new AppsService(aDomain, aDomainUserName, Decode(aDomainUserPwd));
UserFeed uf = appservice.RetrieveAllUsers();
...
I am also able connect to the CalendarResourceService and get a list of calendar resources.
resourceservice = new CalendarResourceService(aDomain, "google_control_demo");
resourceservice.setUserCredentialsaDomainUserName,Decode(aDomainUserPwd));
var rf = resourceservice.RetrieveAllCalendarResources();
...
I am also able to create a new user.
var user = appservice.CreateUser(aUserName, aUserFirstName, aUserLastName, GenerateStrongPwd());
How do I subscribe the new user to a Calendar Resource (I have the calendar resourceEmail)?
(Am I doing everything in the preferred manner as well?)
-Markus