使用 API 自动将实体店销售直接转化导入 Google 广告
Automate Store Sales Direct Conversions import to Google Ads using API
我目前每月使用 UI 将转化(实体店销售直接转化)导入 Google 广告。
我正在创建要以 CSV 格式导入到 Google 广告的数据,然后使用 UI 上传它。
当前方法:Google 广告 > 转化 > 上传
我需要使用 Google 广告 API 及其 Python 模块自动执行此过程。
我怎样才能完成这个?
完成这项工作需要哪些步骤?
您可以使用 Google Adwords API OfflineDataUploadService (v201809)。
https://developers.google.com/adwords/api/docs/reference/v201809/OfflineDataUploadService
在此之前,您需要配置 Adwords 客户端并设置身份验证。
您需要以下详细信息来进行设置。
- 客户编号
- 客户端密码
- 刷新令牌
- 开发者令牌
- user_agent
- client_customer_id
https://developers.google.com/adwords/api/docs/guides/authentication
https://developers.google.com/google-ads/api/docs/first-call/dev-token
您需要创建 googleads.yaml 配置文件并存储用于设置身份验证的凭据。
https://github.com/googleads/googleads-python-lib/blob/master/googleads.yaml
参考下面的代码创建 API 个调用
注意:此服务仅在白名单基础上可用。
我目前每月使用 UI 将转化(实体店销售直接转化)导入 Google 广告。 我正在创建要以 CSV 格式导入到 Google 广告的数据,然后使用 UI 上传它。 当前方法:Google 广告 > 转化 > 上传
我需要使用 Google 广告 API 及其 Python 模块自动执行此过程。 我怎样才能完成这个? 完成这项工作需要哪些步骤?
您可以使用 Google Adwords API OfflineDataUploadService (v201809)。 https://developers.google.com/adwords/api/docs/reference/v201809/OfflineDataUploadService
在此之前,您需要配置 Adwords 客户端并设置身份验证。
您需要以下详细信息来进行设置。
- 客户编号
- 客户端密码
- 刷新令牌
- 开发者令牌
- user_agent
- client_customer_id
https://developers.google.com/adwords/api/docs/guides/authentication
https://developers.google.com/google-ads/api/docs/first-call/dev-token
您需要创建 googleads.yaml 配置文件并存储用于设置身份验证的凭据。 https://github.com/googleads/googleads-python-lib/blob/master/googleads.yaml
参考下面的代码创建 API 个调用
注意:此服务仅在白名单基础上可用。