Hi,

I have this code:

protected void GetData()
{
try
            {
                AppsService service = new AppsService(txtDomain.Text,
txtUsername.Text, txtPassword.Text);

                // Query for a page of users.
                UserFeed feed = service.RetrieveAllUsers();
                UserEntry entry = feed.Entries[0] as UserEntry;
                txtResultados.Text = "Retrieved page of " +
Convert.ToString(feed.Entries.Count) + " users, beginning with " +
entry.Login.UserName + "\n";
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message, "Error");
            }
}


And get Captcha Exception :(, how I can solve this problem. I try to
get a token, but retrieve same Captcha error.

Anyone can help me?

Thanks in advance,
DD
--~--~---------~--~----~------------~-------~--~----~
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