Hello all,
I want to use AdWords Python APIs for reporting purposes.
I set up tokens (also refresh token) 
following 
https://github.com/googleads/googleads-python-lib#user-content-getting-started

Problem comes when I try to download a report, where I'm getting: 
TransportError: HTTPSConnectionPool(host='accounts.google.com', port=443): 
Max retries exceeded with url: /o/oauth2/token (Caused by 
SSLError(SSLError("bad handshake: Error([('SSL routines', 
'ssl3_get_server_certificate', 'certificate verify failed')])")))

Please notice that the same script *works on another laptop* of the same 
company connected over the same network.
I would appreciate to receive a list of checks to be performed against the 
other working machine to isolate the problem, if possible
Thanks a lot!!


Follows the Python code that generates the error

client = 
adwords.AdWordsClient.LoadFromStorage(path=os.getcwd()+'\\credentials\\googleads.yml')
report_downloader = client.GetReportDownloader(version='v201809')
# Create report definition.
report = {
  'reportName': 'Last 30 days CRITERIA_PERFORMANCE_REPORT',
  'dateRangeType': 'LAST_30_DAYS',
  'reportType': 'CRITERIA_PERFORMANCE_REPORT',
  'downloadFormat': 'CSV',
  'selector': {
      'fields': ['CampaignId', 'AdGroupId', 'Id', 'CriteriaType',
                 'Criteria', 'FinalUrls', 'Impressions', 'Clicks', 'Cost']
  }
}
# Print out the report as a string
print(report_downloader.DownloadReportAsString(
  report, skip_report_header=False, skip_column_header=False,
  skip_report_summary=False, include_zero_impressions=True))

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/ad547456-4592-4d61-85a1-f9735cd49001%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
  • ... Davide Guatta
    • ... 'Dannison Yao (AdWords API Team)' via AdWords API and Google Ads API Forum

Reply via email to