【发布时间】:2018-07-17 13:42:12
【问题描述】:
我正在尝试使用 Google Adwords Test API。我正在尝试连接到 Google Adwords API,但我不断收到以下错误:
googleads.errors.GoogleAdsServerFault: [InternalApiError.UNEXPECTED_INTERNAL_API_ERROR @ com.google.ads.api.services.common.error.InternalApiError.<init>(InternalApiErro]
我创建了一个 Google Adwords 生产帐户以获取开发者 API 密钥。然后,我创建了一个 Google Adwords Manager 测试帐户,并设法获得了 Oauth Client id 和 Secret Id。然后我使用Google Oauth 2.0 playground 来获取刷新令牌。我的 google_adwords.yaml 文件现在看起来像这样:
# AdWordsClient configurations
adwords:
#############################################################################
# Required Fields #
#############################################################################
developer_token: **DEVELOPER TOKEN FROM PRODUCTION ACCOUNT PASTED HERE**
#############################################################################
# Optional Fields #
#############################################################################
client_customer_id: **CLIENT CUSTOMER ID FROM MANAGER TEST ACCOUNT PASTED HERE**
# user_agent: INSERT_USER_AGENT_HERE
# partial_failure: True
# validate_only: True
#############################################################################
# OAuth2 Configuration #
# Below you may provide credentials for either the installed application or #
# service account flows. Remove or comment the lines for the flow you're #
# not using. #
#############################################################################
# The following values configure the client for the installed application
# flow.
client_id: **CLIENT ID FROM MANAGER TEST ACCOUNT PASTED HERE**
client_secret: **CLIENT CUSTOMER SECRET FROM MANAGER TEST ACCOUNT PASTED HERE**
refresh_token: **REFRESH TOKEN FROM OAUTH PLAYGROUND ON BEHALF OF MANAGER TEST ACCOUNT PASTED HERE**
# The following values configure the client for the service account flow.
# path_to_private_key_file: INSERT_PATH_TO_JSON_KEY_FILE_HERE
# delegated_account: INSERT_DOMAIN_WIDE_DELEGATION_ACCOUNT
#############################################################################
# ReportDownloader Headers #
# Below you may specify boolean values for optional headers that will be #
# applied to all requests made by the ReportDownloader utility by default. #
#############################################################################
# report_downloader_headers:
# skip_report_header: False
# skip_column_header: False
# skip_report_summary: False
# use_raw_enum_values: False
我的 Python 代码如下所示:
# -*- coding: utf-8 -*-
from googleads import adwords
adwords_client = adwords.AdWordsClient.LoadFromStorage('C:\Python36\google_adwords.yaml')
ad_group_service = adwords_client.GetService('TargetingIdeaService', version='v201802')
selector = {
'ideaType': 'KEYWORD',
'requestType': 'IDEAS'
}
page = ad_group_service.get(selector)
print (page)
有人知道我哪里出错了吗?我认为我的 YAML 文件有问题,但不能完全确定它可能是什么。提前致谢!
【问题讨论】:
标签: python google-ads-api