用戶端程式庫

我們的用戶端程式庫提供高階檢視和基本構成元素 運用 Google Ads API 功能輕鬆開發應用程式。建議做法 如果你是第一次使用 API

用戶端程式庫 來源 分布 程式碼範例
Java google-ads-java Maventar.gz 前往 GitHub 查看
.NET google-ads-dotnet nugettar.gz、zip 前往 GitHub 查看
PHP google-ads-php tar.gz 前往 GitHub 查看
Python google-ads-python tar.gz、zip 前往 GitHub 查看
Ruby google-ads-ruby gem、tar.gz、zip 前往 GitHub 查看
Perl google-ads-perl tar.gz、zip 前往 GitHub 查看

支援的 API 版本

下表列出可與哪些 API 版本搭配使用的用戶端程式庫。

Java

適用於 Java 的用戶端程式庫
v17 Min: 32.0.0
Max:
v16 Min: 30.0.0
Max:
v15 Min: 28.0.0
Max:

C#

.NET 專用的用戶端程式庫
v17 Min: 20.1.0
Max:
v16 Min: 18.1.0
Max:
v15 Min: 17.1.0
Max:

PHP

PHP 適用的用戶端程式庫
v17 Min: 23.1.0
Max:
v16 Min: 22.1.0
Max:
v15 Min: 21.1.0
Max:

Python

Python 專用的用戶端程式庫
v17 Min: 24.1.0
Max:
v16 Min: 23.1.0
Max:
v15 Min: 22.1.0
Max:

小茹

Ruby 適用的用戶端程式庫
v17 Min: 29.0.0
Max:
v16 Min: 27.0.0
Max:
v15 Min: 25.0.0
Max:

Perl

Perl 適用的用戶端程式庫
v17 Min: 23.0.0
Max:
v16 Min: 21.0.0
Max:
v15 Min: 19.0.0
Max:

設定

各個 Google Ads API 用戶端程式庫提供不同的配置設定, 可用來自訂行為的載入方法

以下是所有用戶端程式庫和 為各種配置設定:

  • 用戶端程式庫
    • GOOGLE_ADS_CONFIGURATION_FILE_PATH:設定檔的路徑。
  • OAuth2
    • 應用程式模式
      • GOOGLE_ADS_CLIENT_ID:將這個值設為 OAuth2 用戶端 ID。
      • GOOGLE_ADS_CLIENT_SECRET:將這個值設為您的 OAuth2 用戶端密鑰。
      • GOOGLE_ADS_REFRESH_TOKEN:將這個值設為預先產生的 OAuth2 更新權杖 選擇重複使用 OAuth2 權杖。這是選用設定。
    • 服務帳戶模式
      • GOOGLE_ADS_JSON_KEY_FILE_PATH:將此值設為 OAuth2 JSON 設定 檔案路徑
      • GOOGLE_ADS_IMPERSONATED_EMAIL:將這個值設為 帳戶。
  • Google Ads API
    • GOOGLE_ADS_DEVELOPER_TOKEN:將此參數設為您的開發人員權杖。
    • GOOGLE_ADS_LOGIN_CUSTOMER_ID:這是可以使用的授權客戶 ID 中不含連字號 (-)。
    • GOOGLE_ADS_LINKED_CUSTOMER_ID:只有要更新 取得實體資源在 Google Ads 使用者介面 (Google Ads API 中有 AccountLink 項資源)。設定這個值 更新為資料供應商的客戶 ID; 指定的客戶 ID應設定不含連字號 (-)。瞭解詳情 如要進一步瞭解已連結帳戶,請前往說明中心

環境變數通常是在 Bash 設定檔中定義,例如 匯出為位於 $HOME 目錄中的 .bashrc.bash_profile 檔案。他們 還是要使用指令列定義

以下提供使用 .bashrc 定義環境變數的一些基本步驟 執行下列步驟:

# Append the line "export GOOGLE_ADS_CLIENT_ID=1234567890" to
# the bottom of your .bashrc file.
echo "export GOOGLE_ADS_CLIENT_ID=1234567890" >> ~/.bashrc

# Update your bash environment to use the most recently updated
# version of your .bashrc file.
src ~/.bashrc

您也可以直接從 指令列:

export GOOGLE_ADS_CLIENT_ID=1234567890

另一個替代方案是在呼叫指令時設定環境變數 使用 API

GOOGLE_ADS_CLIENT_ID=1234567890 php /path/to/script/that/uses/envvar.php

搜尋分頁

一般價格為「GoogleAdsService.Search」 用於顯示結果頁面的互動式應用程式。

我們的用戶端程式庫會自動執行 疊代結果時,分頁即可 然後一次下載並全部處理,例如:

Java

private void runExample(GoogleAdsClient googleAdsClient, long customerId) {
  try (GoogleAdsServiceClient googleAdsServiceClient =
      googleAdsClient.getLatestVersion().createGoogleAdsServiceClient()) {
    String query = "SELECT campaign.id, campaign.name FROM campaign ORDER BY campaign.id";
    // Constructs the SearchGoogleAdsStreamRequest.
    SearchGoogleAdsStreamRequest request =
        SearchGoogleAdsStreamRequest.newBuilder()
            .setCustomerId(Long.toString(customerId))
            .setQuery(query)
            .build();

    // Creates and issues a search Google Ads stream request that will retrieve all campaigns.
    ServerStream<SearchGoogleAdsStreamResponse> stream =
        googleAdsServiceClient.searchStreamCallable().call(request);

    // Iterates through and prints all of the results in the stream response.
    for (SearchGoogleAdsStreamResponse response : stream) {
      for (GoogleAdsRow googleAdsRow : response.getResultsList()) {
        System.out.printf(
            "Campaign with ID %d and name '%s' was found.%n",
            googleAdsRow.getCampaign().getId(), googleAdsRow.getCampaign().getName());
      }
    }
  }
}
      

C#

public void Run(GoogleAdsClient client, long customerId)
{
    // Get the GoogleAdsService.
    GoogleAdsServiceClient googleAdsService = client.GetService(
        Services.V17.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";

    try
    {
        // Issue a search request.
        googleAdsService.SearchStream(customerId.ToString(), query,
            delegate (SearchGoogleAdsStreamResponse resp)
            {
                foreach (GoogleAdsRow googleAdsRow in resp.Results)
                {
                    Console.WriteLine("Campaign with ID {0} and name '{1}' was found.",
                        googleAdsRow.Campaign.Id, googleAdsRow.Campaign.Name);
                }
            }
        );
    }
    catch (GoogleAdsException e)
    {
        Console.WriteLine("Failure:");
        Console.WriteLine($"Message: {e.Message}");
        Console.WriteLine($"Failure: {e.Failure}");
        Console.WriteLine($"Request ID: {e.RequestId}");
        throw;
    }
}
      

PHP

public static function runExample(GoogleAdsClient $googleAdsClient, int $customerId)
{
    $googleAdsServiceClient = $googleAdsClient->getGoogleAdsServiceClient();
    // Creates a query that retrieves all campaigns.
    $query = 'SELECT campaign.id, campaign.name FROM campaign ORDER BY campaign.id';
    // Issues a search stream request.
    /** @var GoogleAdsServerStreamDecorator $stream */
    $stream = $googleAdsServiceClient->searchStream(
        SearchGoogleAdsStreamRequest::build($customerId, $query)
    );

    // Iterates over all rows in all messages and prints the requested field values for
    // the campaign in each row.
    foreach ($stream->iterateAllElements() as $googleAdsRow) {
        /** @var GoogleAdsRow $googleAdsRow */
        printf(
            "Campaign with ID %d and name '%s' was found.%s",
            $googleAdsRow->getCampaign()->getId(),
            $googleAdsRow->getCampaign()->getName(),
            PHP_EOL
        );
    }
}
      

Python

def main(client, customer_id):
    ga_service = client.get_service("GoogleAdsService")

    query = """
        SELECT
          campaign.id,
          campaign.name
        FROM campaign
        ORDER BY campaign.id"""

    # Issues a search request using streaming.
    stream = ga_service.search_stream(customer_id=customer_id, query=query)

    for batch in stream:
        for row in batch.results:
            print(
                f"Campaign with ID {row.campaign.id} and name "
                f'"{row.campaign.name}" was found.'
            )
      

小茹

def get_campaigns(customer_id)
  # GoogleAdsClient will read a config file from
  # ENV['HOME']/google_ads_config.rb when called without parameters
  client = Google::Ads::GoogleAds::GoogleAdsClient.new

  responses = client.service.google_ads.search_stream(
    customer_id: customer_id,
    query: 'SELECT campaign.id, campaign.name FROM campaign ORDER BY campaign.id',
  )

  responses.each do |response|
    response.results.each do |row|
      puts "Campaign with ID #{row.campaign.id} and name '#{row.campaign.name}' was found."
    end
  end
end
      

Perl

sub get_campaigns {
  my ($api_client, $customer_id) = @_;

  # Create a search Google Ads stream request that will retrieve all campaigns.
  my $search_stream_request =
    Google::Ads::GoogleAds::V17::Services::GoogleAdsService::SearchGoogleAdsStreamRequest
    ->new({
      customerId => $customer_id,
      query      =>
        "SELECT campaign.id, campaign.name FROM campaign ORDER BY campaign.id"
    });

  # Get the GoogleAdsService.
  my $google_ads_service = $api_client->GoogleAdsService();

  my $search_stream_handler =
    Google::Ads::GoogleAds::Utils::SearchStreamHandler->new({
      service => $google_ads_service,
      request => $search_stream_request
    });

  # Issue a search request and process the stream response to print the requested
  # field values for the campaign in each row.
  $search_stream_handler->process_contents(
    sub {
      my $google_ads_row = shift;
      printf "Campaign with ID %d and name '%s' was found.\n",
        $google_ads_row->{campaign}{id}, $google_ads_row->{campaign}{name};
    });

  return 1;
}
      

視用途而定,您可能需要:

  • 最佳化擷取的網頁數量。
  • 一次以最佳方式儲存結果。
  • 按特定順序下載及處理結果頁面。

這可以透過儲存頁面符記 (而非結果) 的方式達到這個目的, 變得更加複雜

程式碼範例

查看我們的程式碼範例,瞭解一些常用函式的 Google Ads API。