我正在尝试通过 Python 客户端使用 Google Ads API 访问客户帐户的指标。
目前我正在使用 get_campaign_stats_to_csv.py
示例的修改版本,查询:
import datetime
last_three_days = datetime.datetime.today() - datetime.timedelta(days=3)
query = """
SELECT
customer.descriptive_name,
metrics.cost_micros
FROM customer
WHERE
segments.date > '{last_three_days}'
AND segments.date <= '{today}'""".format(
last_three_days=last_three_days.strftime('%Y-%m-%d'),
today=datetime.datetime.today().strftime('%Y-%m-%d'))
它需要我们报告的帐户的命令行参数 --customer_id=
,用法如下:
search_request.customer_id = customer_id # e.g., '--customer_id=1234567890'
问题是,当我使用经理帐户客户 ID 1234567890
时,出现错误:
error_code {
query_error: REQUESTED_METRICS_FOR_MANAGER
}
message: "Metrics cannot be requested for a manager account. To retrieve metrics, issue
separate requests against each client account under the manager account."
}
我认为这意味着使用客户端 ID。但是当我使用客户端 ID 0987654321
时,出现错误:
error_code {
authorization_error: USER_PERMISSION_DENIED
}
message: "User doesn\'t have permission to access customer. Note: If you\'re accessing a
client customer, the manager\'s customer id must be set in the \'login-customer-id\'
header. See https://developers.google.com/google-ads/api/docs/concepts/call-structure#cid"
}
The link in the error message 导致以下标题:
这让我回到了第一个地方,当我使用经理帐户 ID 时,API 会吐出假人。
我已经检查了 this stack overflow question,但我认为我们遇到了不同的问题,因为我的所有帐户旁边都有红色的“测试帐户”标志。
最后一点:有两个测试客户帐户,我都设置了准广告系列。