Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
互联网上有一些示例展示了如何获取每个广告系列的每日支出。例如:adwords api:检索每日支出(成本)
但我想使用广告组 ID 获取广告组的总支出金额。我正在使用 PHP 客户端库。是否可以获得每个广告组的数据?如果是,请给我一个例子。
使用您引用的示例,而不是
// 统计数据的日期范围 $selector->dateRange->min = "20110613"; $selector->dateRange->max = "20110614";
做这个:
// 统计数据的日期范围 $selector->dateRange->min = "20000101"; $selector->dateRange->max = "20250101";
基本上,要求从 2000 年到 2025 年的所有统计数据。
确保在 12 年后重访 :)