开始使用

<ph type="x-smartling-placeholder">

本指南简要介绍了如何开始使用 Google Ads API .NET 库。

安装

客户端库二进制文件使用 NuGet 分发。添加 NuGet 引用 发送至 Google.Ads.GoogleAds 软件包 客户端库。

设置授权

如需为 API 调用授权,您需要向库指定客户端 ID、客户端密钥、刷新令牌和开发者令牌。

如果您需要生成凭据

如果您已有凭据

  • 复制 GoogleAdsApi 节点和 GoogleAdsApi 部分(位于 App.config 文件中的“configSections”节点 GitHub 复制到您的 App.config / Web.config 文件中。如果您使用 NuGet 安装 这些节点将自动插入到 App.config / Web.config 个文件。
  • 包括开发者令牌、客户端 ID、客户端密钥和刷新令牌 在应用的 App.config / Web.config 中。

GitHub 中包含的 App.config 文件已记录详尽的文档,但您也可以参阅配置指南了解详情,以及使用其他方式(例如环境变量)配置客户端库。

进行 API 调用

客户端库的基本用法如下:

// Create a Google Ads client.
GoogleAdsClient client = new GoogleAdsClient();

// Create the required service.
CampaignServiceClient campaignService =
    client.GetService(Services.V18.CampaignService);

// Make more calls to service class.

创建 GoogleAdsClient 实例

Google Ads API .NET 库中最重要的类是 GoogleAdsClient 类。借助它,您可以创建可用于进行 API 调用的预配置服务类。GoogleAdsClient 提供了一个默认构造函数,该构造函数会使用应用的 App.config/Web.config 中指定的设置创建用户对象。如需了解配置选项,请参阅配置指南

// Create a new GoogleAdsClient with the App.config settings.
GoogleAdsClient user = new GoogleAdsClient();

创建 Service

GoogleAdsClient 提供了 GetService 方法,可用于创建 Ads 服务。

CampaignServiceClient campaignService = client.GetService(Services.V18.CampaignService);
// Now make calls to CampaignService.

我们提供了一个 Services 类,用于枚举所有受支持的 API 版本和服务。GetService 方法在创建服务时会接受这些枚举对象作为参数。例如,如需为 Google Ads API 版本 V18 创建 CampaignServiceClient 实例,您需要调用 GoogleAdsClient.GetService 方法,并将 Services.V18.CampaignService 作为参数,如前面的示例所示。

线程安全

在多个线程之间共享 GoogleAdsClient 实例是不安全的,因为您在一个线程中对实例进行的配置更改可能会影响您在其他线程中创建的服务。例如获取 从 GoogleAdsClient 实例创建新的服务实例,并调用 并行的多个服务是线程安全的

多线程应用如下所示:

GoogleAdsClient client1 = new GoogleAdsClient();
GoogleAdsClient client2 = new GoogleAdsClient();

Thread userThread1 = new Thread(addAdGroups);
Thread userThread2 = new Thread(addAdGroups);

userThread1.start(client1);
userThread2.start(client2);

userThread1.join();
userThread2.join();

public void addAdGroups(object data) {
  GoogleAdsClient client = (GoogleAdsClient) data;
  // Do more operations here.
  ...
}

避免 .NET Framework 应用卡顿

同步方法可能会导致某些 .NET Framework 应用冻结。一个常见的示例是通过事件处理脚本方法进行 API 调用 示例。

您可以通过以下两种方式解决此问题:

  1. 使用旧版 Grpc 库。

    您可以设置 GoogleAdsConfigUseGrpcCore 属性,以使用旧版 Grpc.Core 库,而不是默认的 Grpc.Net.Client 库。此方法尚未在 .NET Framework 应用上进行过广泛测试,因此可能无法解决问题。以下是一个示例代码段:

    GoogleAdsConfig config = new GoogleAdsConfig();
    config.UseGrpcCore = true;
    GoogleAdsClient client = new GoogleAdsClient(config);
    

    gRPC 支持页面详细介绍了旧版 Grpc.Core 库与默认 Grpc.Net.Client 库之间的区别。

  2. 使用异步方法

    您可以使用异步方法来避免冻结。下面是一些示例:

    SearchStream

    调用 SearchStream(),结果为 填充到列表视图中

    private async void button1_Click(object sender, EventArgs e)
    {
    // Get the GoogleAdsService.
    GoogleAdsServiceClient googleAdsService = client.GetService(
        Services.V18.GoogleAdsService);
     
    // Create a query that will retrieve all campaigns.
    string query = @"SELECT
                    campaign.id,
                    campaign.name,
                    campaign.network_settings.target_content_network
                FROM campaign
                ORDER BY campaign.id";
     
    List items = new List();
    Task t =  googleAdsService.SearchStreamAsync(customerId.ToString(), query,
        delegate (SearchGoogleAdsStreamResponse resp)
        {
            foreach (GoogleAdsRow googleAdsRow in resp.Results)
            {
                ListViewItem item = new ListViewItem();
                item.Text = googleAdsRow.Campaign.Id.ToString();
                item.SubItems.Add(googleAdsRow.Campaign.Name);
                items.Add(item);
            }
        }
    );
    await t;
    listView1.Items.AddRange(items.ToArray());
    }

    广告系列预算

    创建了 CampaignBudget 调用,新预算的资源名称是 使用MessageBox提醒显示

    private async void button2_Click(object sender, EventArgs e)
    {
    // Get the BudgetService.
    CampaignBudgetServiceClient budgetService = client.GetService(
        Services.V18.CampaignBudgetService);
     
    // Create the campaign budget.
    CampaignBudget budget = new CampaignBudget()
    {
        Name = "Interplanetary Cruise Budget #" + ExampleUtilities.GetRandomString(),
        DeliveryMethod = BudgetDeliveryMethod.Standard,
        AmountMicros = 500000
    };
     
    // Create the operation.
    CampaignBudgetOperation budgetOperation = new CampaignBudgetOperation()
    {
        Create = budget
    };
     
    // Create the campaign budget.
    Task t = budgetService.MutateCampaignBudgetsAsync(
        customerId.ToString(), new CampaignBudgetOperation[] { budgetOperation });
     
    await t;
    MutateCampaignBudgetsResponse response = t.Result;
    MessageBox.Show(response.Results[0].ResourceName);
    }

错误处理

并非所有 API 调用都会成功。如果您的 API 调用因某种原因而失败,服务器可能会抛出错误。请务必捕获 API 错误并加以处理 。

发生 API 错误时,系统会抛出 GoogleAdsException 实例。其中包含详细信息,可帮助您找出问题所在:

// Get the CampaignService.
CampaignServiceClient campaignService = client.GetService(Services.V18.CampaignService);

// Create a campaign for update.
Campaign campaignToUpdate = new Campaign()
{
    ResourceName = ResourceNames.Campaign(customerId, campaignId),
    // More fields to update.
    // ...
};

// Create the operation.
CampaignOperation operation = new CampaignOperation()
{
    Update = campaignToUpdate,
    UpdateMask = FieldMasks.AllSetFieldsOf(campaignToUpdate)
};

try
{
    // Update the campaign.
    MutateCampaignsResponse response = campaignService.MutateCampaigns(
        customerId.ToString(), new CampaignOperation[] { operation });

    // Display the results.
    // ...
}
catch (GoogleAdsException e)
{
    Console.WriteLine("Failure:");
    Console.WriteLine($"Message: {e.Message}");

    // Can examine to get more error details.
    Console.WriteLine($"Failure: {e.Failure}");

    // Can be shared with Google for further troubleshooting.
    Console.WriteLine($"Request ID: {e.RequestId}");
}