Hi, I see there is a code sample at http://code.google.com/apis/gdata/articles/proxy_setup.html#dotnet, however I'm having trouble regarding how to apply this to the DocListExporter example. In other words:
how do I apply the code concept here (with proxy: ========================================= CalendarService service = new CalendarService("CalendarSampleApp"); GDataRequestFactory requestFactory = (GDataRequestFactory) service.RequestFactory; WebProxy myProxy = new WebProxy("http://my.proxy.example.com: 3128/",true); // potentially, setup credentials on the proxy here myProxy.Credentials = CredentialCache.DefaultCredentials; myProxy.UseDefaultCredentials = true; requestFactory.Proxy = myProxy; to the following code from the example: ========================================= GoogleClientLogin loginDialog = new GoogleClientLogin(new DocumentsService("GoogleDocumentsSample"), "youremailh...@gmail.com"); if (loginDialog.ShowDialog() == DialogResult.OK) { RequestSettings settings = new RequestSettings ("GoogleDocumentsSample", loginDialog.Credentials); settings.AutoPaging = true; settings.PageSize = 100; if (settings != null) { this.request = new DocumentsRequest(settings); this.Text = "Successfully logged in"; Feed<Document> feed = this.request.GetEverything (); // this takes care of paging the results in foreach (Document entry in feed.Entries) { all.Add(entry); } ========================================= --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Docs Data APIs" group. To post to this group, send email to Google-Docs-Data-APIs@googlegroups.com To unsubscribe from this group, send email to google-docs-data-apis+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/Google-Docs-Data-APIs?hl=en -~----------~----~----~----~------~----~------~--~---