I’m using the following code snippets and the account details are: Username: [email protected] Password: [******] AppKey: ABQIAAAASnZj24qXmiQpc8R1kiGZlxT2yXp_ZAY8_ufC3CFXhHIE1NvwkxRTVYRVzTBnNz8cWfI3feI4FFgBzQ
The Google Base URL is: http://base.google.com/base/feeds/items Code Snippets: private void GetData_Click(object sender, EventArgs e) { try { GBaseService service = new GBaseService(this.Text.Trim (), this.AppKey.Text.Trim()); GDataGAuthRequestFactory f = (GDataGAuthRequestFactory) service.RequestFactory; f.AccountType = "GOOGLE"; GBaseQuery query = new GBaseQuery (this.BaseUri.Text.Trim()); if (this.Username.Text.Trim().Length > 0) { service.setUserCredentials(this.Username.Text.Trim (), this.Password.Text.Trim()); } GBaseFeed feed = service.Query(query); GBaseEntry entry = new GBaseEntry(); } catch (Exception ex) { MessageBox.Show(ex.Message); } } The error I got is: "Execution of request failed: http://base.google.com/base/feeds/items” Inner Exception: "The remote server returned an error: (404) Not Found." --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Base Data API" 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-Base-data-API?hl=en -~----------~----~----~----~------~----~------~--~---
