Whats the deal witythe below error? This is from the python api. Is it
sayihg my clienht_id in nkt valid? wow! I am using mcc.
adwords:
developer_token: sssssss
user_agent: test
client_id: really!!!!!!.
apps.googleusercontent.com client_secret: cccccccc
refresh_token: cccc
client = adwords.AdWordsClient.LoadFromStorage(path='/home/ubuntu/googleads.yaml')
report_downloader = client.GetReportDownloader(version='v201402')
# Create report definition.
report = {
'reportName': 'Last 7 days CRITERIA_PERFORMANCE_REPORT',
'dateRangeType': 'LAST_7_DAYS',
'reportType': 'CRITERIA_PERFORMANCE_REPORT',
'downloadFormat': 'CSV',
'selector': {
'fields': ['CampaignId', 'AdGroupId', 'Id', 'CriteriaType',
'Criteria', 'Impressions', 'Clicks', 'Cost']
},
# Enable to get rows with zero impressions.
'includeZeroImpressions': 'false'
}
f = open('tewt','w')
report_downloader.DownloadReport(report, f)
f.close()