Hello, Is it possible to get Display Keyword Performance report via AdWords API?
Me need to get real keywords and destination URLs performance of Display Network reports, same as in AdWords Admin Interface. I see here: https://developers.google.com/adwords/api/docs/appendix/reports#display-keyword this report marked as: "This is a beta feature." I get this error when try to retrieve report using Python AdWords API: adspygoogle.adwords.AdWordsErrors.AdWordsReportError: HTTP code: 500, type: 'BetaError.BETA_FEATURE', trigger: '', field path: 'selector.reportDefinition.reportType' May be is possible to become "Beta user" someway to get access to this report? This is piece of my Python code (really nothing unusual there): report_downloader = client.GetReportDownloader('https://adwords.google.com', 'v201209') # Create report definition. report = { 'reportName': 'Last 7 days DN_KEYWORDS', 'dateRangeType': 'LAST_7_DAYS', 'reportType': 'DISPLAY_KEYWORD_PERFORMANCE_REPORT', 'downloadFormat': 'TSV', 'selector': { 'fields': ['Date','CampaignId', 'AdGroupId', 'KeywordText','Id', 'CriteriaDestinationUrl', 'DestinationUrl', 'Conversions','ConversionsManyPerClick', 'ConversionValue', 'Clicks', 'Cost'] }, # Enable to get rows with zero impressions. 'includeZeroImpressions': 'false' } report_downloader.DownloadReport(report, file_path='import/ads.tsv') -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ 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 [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/adwords-api?hl=en
