Python 2.7 &引用;TypeError:无法连接';str';和';非类型';“对象”;Python中的Google Adwords API客户端

Python 2.7 &引用;TypeError:无法连接';str';和';非类型';“对象”;Python中的Google Adwords API客户端,python-2.7,google-ads-api,Python 2.7,Google Ads Api,我无法将下载报告功能用于Python客户端。我在v201306中使用adwords-15.9.0。它总是在以下情况下失败: $ ./classifications.py Traceback (most recent call last): File "./classifications.py", line 48, in <module> download_report(client, client_id) File "./classifications.py", l

我无法将下载报告功能用于Python客户端。我在v201306中使用adwords-15.9.0。它总是在以下情况下失败:

$ ./classifications.py 
Traceback (most recent call last):
  File "./classifications.py", line 48, in <module>
    download_report(client, client_id)
  File "./classifications.py", line 32, in download_report
    file_path = report_downloader.DownloadReportWithAwql(report_query, 'CSV', file_path=path)
  File "/Users/mike/.virtualenvs/xxx/lib/python2.7/site-packages/adspygoogle/adwords/ReportDownloader.py", line 127, in DownloadReportWithAwql
    fileobj) or file_path
  File "/Users/mike/.virtualenvs/xxx/lib/python2.7/site-packages/adspygoogle/adwords/ReportDownloader.py", line 169, in __DownloadAdHocReportWithAwql
    return self.__DownloadReport(payload, return_micros, fileobj)
  File "/Users/mike/.virtualenvs/xxx/lib/python2.7/site-packages/adspygoogle/adwords/ReportDownloader.py", line 184, in __DownloadReport
    headers = self.__GenerateHeaders(return_micros)
  File "/Users/mike/.virtualenvs/xxx/lib/python2.7/site-packages/adspygoogle/adwords/ReportDownloader.py", line 282, in __GenerateHeaders
    self._headers['oauth2credentials'].apply(headers)
  File "/Users/mike/.virtualenvs/xxx/lib/python2.7/site-packages/oauth2client/client.py", line 533, in apply
    headers['Authorization'] = 'Bearer ' + self.access_token
TypeError: cannot concatenate 'str' and 'NoneType' objects

您的身份验证有问题,如
OAuth2Credentials
对象的属性
access\u-token
None
所示

如果您还没有,请看一看示例,了解如何处理通过OAuth2进行的身份验证。您还需要创建一个应用程序来获取客户端ID和密码

是的。已在v15.9.1中修复

#!/usr/bin/env python

import csv
import os
import MySQLdb as mdb
from adspygoogle.adwords.AdWordsClient import AdWordsClient


MATCH_TYPES = {
    'b': 'Broad',
    'e': 'Exact',
    'p': 'Phrase',
}

DEVICE_TYPES = {
    'c': 'Desktop',
    'm': 'Mobile',
    't': 'Tablet',
}

REPORT_TYPE = 'CREATIVE_CONVERSION_REPORT'


def download_report(client, client_id):
    # Initialize appropriate service.
    report_downloader = client.GetReportDownloader(version='v201306')

    # Create report query.
    report_query = ('SELECT AdGroupId', 'CampaignId', 'CreativeId FROM CREATIVE_CONVERSION_REPORT  DURING LAST_7_DAYS')

    path = '/tmp/report_%d.csv' % client_id
    file_path = report_downloader.DownloadReportWithAwql(report_query, 'CSV', file_path=path)

    print 'Report was downloaded to \'%s\'.' % file_path

if __name__ == '__main__':
    client = AdWordsClient()

    conn = mdb.connect('xxx.us-east-1.rds.amazonaws.com', 'xxx', 'xxx', 'xxx');
    with conn:
        cur = conn.cursor(mdb.cursors.DictCursor)
        cur.execute("SELECT * FROM xxx.adwords_accounts")

        rows = cur.fetchall()
        for row in rows:
            client_id = row['id']
            client.SetClientCustomerId(client_id)
            download_report(client, client_id)