API 호출

이 가이드에는 이전 단계 아직 시작하지 않았다면 소개로 시작합니다.

이 가이드에서는 Google Ads 계정에 대한 충분한 액세스 권한이 있는 사용자가 일회성 설정에서 앱이 추가 사용자 개입 없이 계정에 대한 오프라인 API를 호출하도록 승인할 수 있는 워크플로인 새로고침 토큰도 사용합니다. 나 갱신 토큰을 사용해 크론 작업이나 양방향 워크플로(예: 웹 또는 모바일 앱)와 통합이 가능합니다

갱신 토큰 가져오기

Google Ads API에서는 승인 메커니즘으로 OAuth 2.0을 사용합니다. 기본적으로 OAuth 2.0 인증은 제한된 시간 후에 만료되는 액세스 토큰을 발급합니다. 액세스 토큰을 자동으로 갱신하려면 대신 갱신 토큰을 발행하세요.

OAuth2L

  1. 다음을 실행하여 갱신 토큰을 생성합니다. oauth2l 도구:

    oauth2l fetch --credentials credentials.json --scope adwords \
        --output_format refresh_token
    ``` The `credentials.json` file is from a [previous
    step](/google-ads/api/docs/get-started/oauth-cloud-project#id-secret).
    
  1. oauth2l 명령어를 사용하면 Google 계정 로그인 창이 브라우저 창에 OAuth 2.0 인증 단계가 안내되어 있습니다.

    로그인 고객 ID를 확인한 단계의 이메일 주소를 사용하여 로그인해야 합니다.

    앱이 인증되지 않은 경우 경고 화면이 표시될 수 있습니다. 이 경우 고급 표시 링크를 클릭하고 PROJECT_NAME(확인되지 않음)으로 이동 옵션을 클릭해도 됩니다.

  2. 범위를 확인한 후 계속 버튼을 클릭합니다.

    브라우저에 다음 텍스트와 함께 프롬프트가 표시됩니다.

    Authorization code granted. Please close this tab.
    

    oauth2l 명령어는 다음 JSON 스니펫을 출력합니다.

    {
      "client_id": "******.apps.googleusercontent.com",
      "client_secret": "******",
      "token_uri": "https://oauth2.googleapis.com/token",
      "auth_uri": "https://accounts.google.com/o/oauth2/auth",
      "refresh_token": "******",
      "type": "authorized_user"
    }
    

gcloud CLI

  1. 다음을 실행하여 갱신 토큰을 생성합니다. gcloud CLI 도구:

    gcloud auth application-default \
      login --scopes=https://www.googleapis.com/auth/adwords,https://www.googleapis.com/auth/cloud-platform \
      --client-id-file=<path_to_credentials.json>
    ``` The `credentials.json` file is from a [previous
    step](/google-ads/api/docs/get-started/oauth-cloud-project#id-secret).
    
  1. gcloud 명령어를 사용하면 Google 계정 로그인 창이 브라우저 창에 OAuth 2.0 인증 단계가 안내되어 있습니다.

    인증을 요청한 단계의 이메일 주소를 사용하여 확인함

    앱이 인증되지 않은 경우 경고 화면이 표시될 수 있습니다. 이러한 고급 표시 링크를 클릭하고 PROJECT_NAME (확인되지 않음) 옵션으로 이동

  2. 범위를 확인한 후 계속 버튼을 클릭하여 권한을 부여합니다.

    브라우저가 https://cloud.google.com/sdk/auth_success로 이동하여 인증에 성공했음을 나타냅니다.

    Authorization code granted. Please close this tab.
    

    gcloud 명령어는 다음과 같은 출력을 출력합니다.

    Credentials saved to file: [/****/.config/gcloud/application_default_credentials.json]
    

    이제 application_default_credentials.json 파일을 엽니다. 내용 다음과 유사해야 합니다.

    {
      "account": "",
      "client_id": "******.apps.googleusercontent.com",
      "client_secret": "******",
      "refresh_token": "******",
      "type": "authorized_user",
      "universe_domain": "googleapis.com"
    }
    

기타

curl 또는 자체 HTTP 클라이언트를 대신 사용하려면 다음을 참고하세요. 예를 보려면 모바일 및 데스크톱 앱용 OAuth 2.0 가이드를 참고하세요.

API 호출

원하는 클라이언트를 선택하여 API를 호출하는 방법을 알아보세요.

자바

클라이언트 라이브러리 아티팩트는 Maven 중앙 저장소를 사용합니다. 추가 다음과 같이 클라이언트 라이브러리를 프로젝트에 종속 항목으로 추가합니다.

Maven 종속 항목은 다음과 같습니다.

<dependency>
  <groupId>com.google.api-ads</groupId>
  <artifactId>google-ads</artifactId>
  <version>33.0.0</version>
</dependency>

Gradle 종속 항목은 다음과 같습니다.

implementation 'com.google.api-ads:google-ads:33.0.0'

다음 콘텐츠로 ~/ads.properties라는 파일을 만듭니다.

api.googleads.clientId=INSERT_CLIENT_ID_HERE
api.googleads.clientSecret=INSERT_CLIENT_SECRET_HERE
api.googleads.refreshToken=INSERT_REFRESH_TOKEN_HERE
api.googleads.developerToken=INSERT_DEVELOPER_TOKEN_HERE
api.googleads.loginCustomerId=INSERT_LOGIN_CUSTOMER_ID_HERE

다음과 같이 GoogleAdsClient 객체를 만듭니다.

GoogleAdsClient googleAdsClient = null;
try {
  googleAdsClient = GoogleAdsClient.newBuilder().fromPropertiesFile().build();
} catch (FileNotFoundException fnfe) {
  System.err.printf(
      "Failed to load GoogleAdsClient configuration from file. Exception: %s%n",
      fnfe);
  System.exit(1);
} catch (IOException ioe) {
  System.err.printf("Failed to create GoogleAdsClient. Exception: %s%n", ioe);
  System.exit(1);
}

다음으로 GoogleAdsService.SearchStream 메서드로 캠페인 보고서를 실행하여 관리할 수 있습니다. 이 가이드에서는 보고서입니다.

    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#

클라이언트 라이브러리 패키지는 Nuget.org 저장소에 게시됩니다. 먼저 Google.Ads.GoogleAds 패키지에 nuget 참조를 추가합니다.

dotnet add package Google.Ads.GoogleAds --version 18.1.0

관련 설정으로 GoogleAdsConfig 객체를 만들고 이를 사용하여 GoogleAdsClient 객체를 만듭니다.

GoogleAdsConfig config = new GoogleAdsConfig()
{
    DeveloperToken = "******",
    OAuth2Mode = "APPLICATION",
    OAuth2ClientId = "******.apps.googleusercontent.com",
    OAuth2ClientSecret = "******",
    OAuth2RefreshToken = "******",
    LoginCustomerId = ******
};
GoogleAdsClient client = new GoogleAdsClient(config);

그런 다음 GoogleAdsService.SearchStream 메서드를 사용하여 캠페인 보고서를 실행하여 계정의 캠페인을 가져옵니다. 이 가이드에서는 보고에 관한 세부정보를 다루지 않습니다.

    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

클라이언트 라이브러리 패키지는 Packagist 저장소에 게시됩니다. 다음으로 변경: 프로젝트의 루트 디렉터리에 넣고 다음 명령어를 실행하여 설치합니다. vendor/ 디렉터리에 있는 모든 종속 항목을 루트 디렉토리로 이동합니다.

composer require googleads/google-ads-php:25.0.0

GitHub 저장소에서 google_ads_php.ini 파일의 사본을 만들고 사용자 인증 정보를 포함하도록 수정합니다.

[GOOGLE_ADS]
developerToken = "INSERT_DEVELOPER_TOKEN_HERE"
loginCustomerId = "INSERT_LOGIN_CUSTOMER_ID_HERE"

[OAUTH2]
clientId = "INSERT_OAUTH2_CLIENT_ID_HERE"
clientSecret = "INSERT_OAUTH2_CLIENT_SECRET_HERE"
refreshToken = "INSERT_OAUTH2_REFRESH_TOKEN_HERE"

GoogleAdsClient 객체의 인스턴스를 생성합니다.

$oAuth2Credential = (new OAuth2TokenBuilder())
    ->fromFile('/path/to/google_ads_php.ini')
    ->build();

$googleAdsClient = (new GoogleAdsClientBuilder())
    ->fromFile('/path/to/google_ads_php.ini')
    ->withOAuth2Credential($oAuth2Credential)
    ->build();

그런 다음 GoogleAdsService.SearchStream 메서드를 사용하여 캠페인 보고서를 실행하여 계정의 캠페인을 가져옵니다. 이 가이드에서는 보고에 관한 세부정보를 다루지 않습니다.

    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

클라이언트 라이브러리는 PyPI에 배포됩니다. pip 명령어를 실행합니다.

python -m pip install google-ads==21.3.0

GitHub 저장소에서 google-ads.yaml 파일의 사본을 만들고 사용자 인증 정보를 포함하도록 수정합니다.

client_id: INSERT_OAUTH2_CLIENT_ID_HERE
client_secret: INSERT_OAUTH2_CLIENT_SECRET_HERE
refresh_token: INSERT_REFRESH_TOKEN_HERE
developer_token: INSERT_DEVELOPER_TOKEN_HERE
login_customer_id: INSERT_LOGIN_CUSTOMER_ID_HERE

다음을 호출하여 GoogleAdsClient 인스턴스를 만듭니다. GoogleAdsClient.load_from_storage 메서드를 사용하여 지도 가장자리에 패딩을 추가할 수 있습니다. google-ads.yaml의 경로를 메서드에 문자열로 전달하여 호출합니다.

from google.ads.googleads.client import GoogleAdsClient
client = GoogleAdsClient.load_from_storage("path/to/google-ads.yaml")

다음으로 GoogleAdsService.SearchStream 메서드로 캠페인 보고서를 실행하여 관리할 수 있습니다. 이 가이드에서는 보고서입니다.

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.'
            )

Ruby

클라이언트 라이브러리용 Ruby gem이 Rubygems gem에 게시됨 호스팅 사이트를 참조하세요. 권장되는 방법 Bundler를 사용 중입니다. Gemfile에 다음 줄을 추가합니다.

gem 'google-ads-googleads', '~> 30.0.0'

그런 후 다음을 실행합니다.

bundle install

다음 항목의 사본을 만듭니다. google_ads_config.rb 파일을 가져와서 사용자 인증 정보를 포함하도록 수정합니다.

Google::Ads::GoogleAds::Config.new do |c|
  c.client_id = 'INSERT_CLIENT_ID_HERE'
  c.client_secret = 'INSERT_CLIENT_SECRET_HERE'
  c.refresh_token = 'INSERT_REFRESH_TOKEN_HERE'
  c.developer_token = 'INSERT_DEVELOPER_TOKEN_HERE'
  c.login_customer_id = 'INSERT_LOGIN_CUSTOMER_ID_HERE'
end

유지할 위치로 경로를 전달하여 GoogleAdsClient 인스턴스를 만듭니다. 이 파일을 찾습니다.

client = Google::Ads::GoogleAds::GoogleAdsClient.new('path/to/google_ads_config.rb')

다음으로 GoogleAdsService.SearchStream 메서드로 캠페인 보고서를 실행하여 관리할 수 있습니다. 이 가이드에서는 보고서입니다.

    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

이 라이브러리는 CPAN: 먼저 원하는 디렉터리에 google-ads-perl 저장소를 클론합니다.

git clone https://github.com/googleads/google-ads-perl.git

google-ads-perl 디렉터리로 변경하고 명령 프롬프트에서 다음 명령어를 실행하여 라이브러리 사용에 필요한 모든 종속 항목을 설치합니다.

cd google-ads-perl
cpan install Module::Build
perl Build.PL
perl Build installdeps

GitHub 저장소에서 googleads.properties 파일의 사본을 만들고 사용자 인증 정보를 포함하도록 수정합니다.

clientId=INSERT_OAUTH2_CLIENT_ID_HERE
clientSecret=INSERT_OAUTH2_CLIENT_SECRET_HERE
refreshToken=INSERT_OAUTH2_REFRESH_TOKEN_HERE
developerToken=INSERT_DEVELOPER_TOKEN_HERE
loginCustomerId=INSERT_LOGIN_CUSTOMER_ID_HERE

이 파일을 보관하는 위치의 경로를 전달하여 Client 인스턴스를 만듭니다.

my $properties_file = "/path/to/googleads.properties";

my $api_client = Google::Ads::GoogleAds::Client->new({
  properties_file => $properties_file
});

다음으로 GoogleAdsService.SearchStream 메서드로 캠페인 보고서를 실행하여 관리할 수 있습니다. 이 가이드에서는 보고에 관한 세부정보를 다루지 않습니다.

    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;
}

REST

먼저 HTTP 클라이언트를 사용하여 OAuth 2.0 액세스 토큰을 가져옵니다. 이 가이드에서는 curl 명령어를 사용합니다.

curl \
  --data "grant_type=refresh_token" \
  --data "client_id=CLIENT_ID" \
  --data "client_secret=CLIENT_SECRET" \
  --data "refresh_token=REFRESH_TOKEN" \
  https://www.googleapis.com/oauth2/v3/token

다음으로 GoogleAdsService.SearchStream 메서드로 캠페인 보고서를 실행하여 관리할 수 있습니다. 이 가이드에서는 보고에 관한 세부정보를 다루지 않습니다.

curl -i -X POST https://googleads.googleapis.com/v18/customers/CUSTOMER_ID/googleAds:searchStream \
   -H "Content-Type: application/json" \
   -H "Authorization: Bearer ACCESS_TOKEN" \
   -H "developer-token: DEVELOPER_TOKEN" \
   -H "login-customer-id: LOGIN_CUSTOMER_ID" \
   --data-binary "@query.json"

query.json의 콘텐츠는 다음과 같습니다.

{
  "query": "SELECT campaign.id, campaign.name, campaign.network_settings.target_content_network FROM campaign ORDER BY campaign.id"
}