Using example code from the .NET API toolkit, I'm trying to pull the list of ReportDefinitions. Unfortunately, page.entries is always null. I've tried connecting using several of our accounts and the results are the same. Am I missing something?
PS - Is there a way to insert code blocks like this with proper formatting? // Get the ReportDefinitionService. ReportDefinitionService reportDefinitionService = (ReportDefinitionService)user.GetService( AdWordsService.v201003.ReportDefinitionService); // Create selector. ReportDefinitionSelector selector = new ReportDefinitionSelector(); try { // Get all report definitions. ReportDefinitionPage page = reportDefinitionService.get(selector); // Display report definitions. if (page != null && page.entries != null && page.entries.Length > 0) { dataGridView1.DataSource = page.entries; } else { Console.WriteLine("No report definitions were found."); } } catch (Exception ex) { Console.WriteLine("Failed to retrieve report definitions. Exception says \"{0}\"", ex.Message); } -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group: http://adwordsapi.blogspot.com http://groups.google.com/group/adwords-api =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message because you are subscribed to the Google Groups "AdWords API Forum" group. To post to this group, send email to adwords-api@googlegroups.com To unsubscribe from this group, send email to adwords-api+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/adwords-api?hl=en