5월 14일 오전 10시(동부 표준시)에 Google 광고 및 측정 커뮤니티 서버의
Discord 와
YouTube 에서 라이브로 참여하세요. Google Ads API v24.1에 추가된 새로운 기능에 대해 논의할 예정입니다.
Google uses AI technology to translate content into your preferred language. AI translations can contain errors.
광고그룹 이미지 확장 소재 추가
컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
자바
This example is not yet available in Java; you can take a look at the other languages.
C#
This example is not yet available in C#; you can take a look at the other languages.
PHP
This example is not yet available in PHP; you can take a look at the other languages.
Python
#!/usr/bin/env python
# Copyright 2023 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""This code example adds an ad group asset.
To upload image assets, run misc/upload_image_asset.py.
"""
import argparse
import sys
from google.ads.googleads.client import GoogleAdsClient
from google.ads.googleads.errors import GoogleAdsException
from google.ads.googleads.v24.resources.types.ad_group_asset import AdGroupAsset
from google.ads.googleads.v24.services.services.ad_group_asset_service.client import (
AdGroupAssetServiceClient ,
)
from google.ads.googleads.v24.services.types.ad_group_asset_service import (
AdGroupAssetOperation ,
MutateAdGroupAssetResult ,
MutateAdGroupAssetsResponse ,
)
def main (
client : GoogleAdsClient ,
customer_id : str ,
ad_group_id : str ,
asset_id : str ,
) - > None :
ad_group_asset_service : AdGroupAssetServiceClient = client . get_service (
"AdGroupAssetService"
)
ad_group_asset_resource_name : str = ad_group_asset_service . asset_path (
customer_id , asset_id
)
ad_group_asset_operation : AdGroupAssetOperation = client . get_type (
"AdGroupAssetOperation"
)
ad_group_asset_set : AdGroupAsset = ad_group_asset_operation . create
ad_group_asset_set . asset = ad_group_asset_resource_name
ad_group_asset_set . field_type = client . enums . AssetFieldTypeEnum . AD_IMAGE
ad_group_asset_set . ad_group = ad_group_asset_service . ad_group_path (
customer_id , ad_group_id
)
response : MutateAdGroupAssetsResponse = (
ad_group_asset_service . mutate_ad_group_assets (
customer_id = customer_id , operations = [ ad_group_asset_operation ]
)
)
result : MutateAdGroupAssetResult
for result in response . results :
print (
f "Created ad group asset with resource name: ' { result . resource_name } '"
)
if __name__ == "__main__" :
parser = argparse . ArgumentParser (
description = (
"Updates an ad group for specified customer and ad group "
"id with the given image asset id."
)
)
# The following argument(s) should be provided to run the example.
parser . add_argument (
"-c" ,
"--customer_id" ,
type = str ,
required = True ,
help = "The Google Ads customer ID." ,
)
parser . add_argument (
"-a" , "--ad_group_id" , type = str , required = True , help = "The ad group ID."
)
parser . add_argument (
"-s" ,
"--asset_id" ,
type = str ,
required = True ,
help = "The asset ID." ,
)
args = parser . parse_args ()
# GoogleAdsClient will read the google-ads.yaml configuration file in the
# home directory if none is specified.
googleads_client = GoogleAdsClient . load_from_storage ( version = "v24" )
try :
main (
googleads_client , args . customer_id , args . ad_group_id , args . asset_id
)
except GoogleAdsException as ex :
print (
f 'Request with ID " { ex . request_id } " failed with status '
f '" { ex . error . code () . name } " and includes the following errors:'
)
for error in ex . failure . errors :
print ( f ' \t Error with message " { error . message } ".' )
if error . location :
for field_path_element in error . location . field_path_elements :
print ( f " \t\t On field: { field_path_element . field_name } " )
sys . exit ( 1 )
Ruby
This example is not yet available in Ruby; you can take a look at the other languages.
Perl
This example is not yet available in Perl; you can take a look at the other languages.
curl
참고: 이 단계의 직접 REST 코드 샘플은 여기에 제공되지 않지만 수동 REST 요청을 사용하여 이를 달성할 수 있습니다.
Google Ads API REST 인터페이스 문서와 메서드별 참조 페이지를 참고하세요. 프로토 정의에 따라 JSON 페이로드를 구성해야 합니다.
주요 리소스:
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스 에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스 에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책 을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다.
최종 업데이트: 2026-05-04(UTC)
[[["이해하기 쉬움","easyToUnderstand","thumb-up"],["문제가 해결됨","solvedMyProblem","thumb-up"],["기타","otherUp","thumb-up"]],[["필요한 정보가 없음","missingTheInformationINeed","thumb-down"],["너무 복잡함/단계 수가 너무 많음","tooComplicatedTooManySteps","thumb-down"],["오래됨","outOfDate","thumb-down"],["번역 문제","translationIssue","thumb-down"],["샘플/코드 문제","samplesCodeIssue","thumb-down"],["기타","otherDown","thumb-down"]],["최종 업데이트: 2026-05-04(UTC)"],[],[]]