Hi all,

is there a way to get Google users from our domain that were created/
modifed/deleted since some configurable time using .NET provisioning
API?

It seems that UserQuery object ignores "updated-min" query parameter
(StartDate property from FeedQuery) and does not put it in calculated
URI.

I tried to create my own class, which inherits from UserQuery and
overrides CalculateQuery() method. It correctly calculates request URI
- e.g.:
"https://www.google.com/a/feeds/ourdomain/user/2.0?updated-
min=2008-09-13T00:00:00+02:00".
But when I submit it, I receive:
HTTP status code: 403 (Forbidden)
Message: "This service does not support the 'updated-min'
parameter."

>From what I can read here 
>http://code.google.com/apis/gdata/reference.html#Queries
it seems that user service does not support such query parameter.

I have also tried to use iModifiedSince argument of Query() method of
UserService object e.g.:
userService.Query(userQuery.Uri, new DateTime(2008, 8, 13, 0, 0, 0));
which sends HTTP request with If-Modified-Since header, but I get
NotModified HTTP status code.

Is there a way how to accomplish this?

I have a database containing information about Google users in our
domain, who were created automatically by my synchronization code. The
code synchronizes Google users with other systems. It works great,
however I would like to be able to support manual changes made by
administrators through Google admin web pages i.e. I would like to
recognize manually created/modified/deleted Google users and
synchronize them with my database, so it stays in sync with Google's
current state. And I do not want to retrieve all users in domain,
because it is very very slow (we have 10.000+ users currently). Is it
possible to retrieve changed users only?

Thank you,
George
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Apps APIs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/google-apps-apis?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to