Hello, I am not sure I understand your question. Are you trying to retrieve contact information for your Google Apps domain? If this is the case, you will have to use the Profiles API endpoint using an administrator credentials: http://code.google.com/googleapps/domain/profiles/developers_guide.html
Best, Alain On Wed, Jan 11, 2012 at 7:48 AM, Vasyl Boyko <[email protected]> wrote: > On my compaty account on Contacts tab, Organization group i can get > information on my c# application by API > > ContactsRequest cr = new ContactsRequest(settings); > settings.AutoPaging = true; > settings.PageSize = 100; > Feed<Contact> f = cr.GetContacts(); > int contactCount = 0; > int sucCount = 0; > int errorCount = 0; > foreach (Contact entry in f.Entries) > { > > but i can get "Information from directory OrganizationName" > In this information contain other emails, not display in entry.Emails > > How to get "Information from directory OrganizationName"? > > -- > You received this message because you are subscribed to the Google > Groups "Google Contacts, Shared Contacts and User Profiles 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://code.google.com/apis/contacts/community/forum.html > -- Alain Vongsouvanh | Developer Programs Engineer -- You received this message because you are subscribed to the Google Groups "Google Contacts, Shared Contacts and User Profiles 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://code.google.com/apis/contacts/community/forum.html
