将Adwords信息同步到本地数据库的最具成本效益的方法是什么


What is the most cost-effective way of synchronising Adwords information to local database

我正在开发Adwords API,以获取有关活动、广告组、标准、广告以及关键字的信息,并将其存储在本地数据库中。Adwords门户网站每天都会有很多直接更新。但我需要我的应用程序在本地数据库中反映所有这些更新。实现这一目标的最具成本效益的方法是什么?如何实现?

答案取决于您感兴趣存储在本地数据库中的字段。一种方法是运行AdWords API报告,将值下载并加载到本地数据库中。好的一面是报告是免费的。缺点是报告不会公开所有字段。另一种方法是运行CustomerSyncService来确定在一段时间内到底发生了什么变化,并调用AdWords API来下载特定的对象。这将花费你的钱,但这比使用AdWords API调用下载整个帐户要好。

请参阅以下链接:

报告基础:http://code.google.com/apis/adwords/docs/guides/reporting.html报告类型:http://code.google.com/apis/adwords/docs/appendix/reports.html客户同步服务:http://code.google.com/apis/adwords/docs/reference/latest/CustomerSyncService.html使用CustomerSyncService:http://code.google.com/p/google-api-adwords-php/source/browse/trunk/examples/v201109/AccountManagement/GetAccountChanges.php

此外,如果您有更多与AdWords API相关的问题,我建议您在官方论坛上提问http://code.google.com/apis/adwords/community/.论坛活跃,AdWords API团队成员和官方图书馆维护人员定期在论坛上回答问题。