Hello,

I faced a strange situation and I wonder if it is API issue or not...

RetrieveAllUsers of Provisioning API returns UserFeed, which includes 
UserEntry WITH NO NAME INFO.
Below is part of my Python code:
-----
user_feed = apps_service.RetrieveAllUsers()
    
for each_user in user_feed.entry:
  users.append({
                'family_name': each_user.name.family_name,     ----------> 
This is null for all entry
                'given_name': each_user.name.given_name,       -----------> 
This is null for all entry
                })
-----
But, RetrieveUser returns UserEntry with correct name info. Null name issue 
happens only on Retrieve*All*Users.

My application is installed via GoogleApps Marketplace to customer's 
GoogleApps domain. It runs on GoogleAppEngine and using gdata-python-client 
2.0.14.
It happens on only one of my customer, for all other customers 
RetrieveAllUsers returns UserEntry with correct name info.
It seems that 'apps:name' tag of UserEntry not having familyName and 
givenName attributes when issue comes up.

Is this some kind of API issue or my setting failure of GoogleApps? Any idea 
to fix?

Thanks!

Akitoshi Abe

-- 
You received this message because you are subscribed to the Google Groups 
"Google Apps Domain Information and Management APIs" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-apps-mgmt-apis/-/j84mo0jMnjAJ.
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-mgmt-apis?hl=en.

Reply via email to