添加广告组图片素材资源
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
Java
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.v21.resources.types.ad_group_asset import AdGroupAsset
from google.ads.googleads.v21.services.services.ad_group_asset_service.client import (
AdGroupAssetServiceClient,
)
from google.ads.googleads.v21.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="v21")
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'\tError with message "{error.message}".')
if error.location:
for field_path_element in error.location.field_path_elements:
print(f"\t\tOn 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.
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2025-08-27。
[null,null,["最后更新时间 (UTC):2025-08-27。"],[[["\u003cp\u003eThis example demonstrates how to add an image asset to an ad group in Google Ads using the Python client library.\u003c/p\u003e\n"],["\u003cp\u003eIt requires providing the Google Ads customer ID, ad group ID, and asset ID as input parameters.\u003c/p\u003e\n"],["\u003cp\u003eTo use this example, you need to first upload an image asset using the provided script \u003ccode\u003emisc/upload_image_asset.py\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eThe example utilizes the \u003ccode\u003eAdGroupAssetService\u003c/code\u003e to create and link the ad group asset to the specified ad group.\u003c/p\u003e\n"],["\u003cp\u003eCurrently, this example is only available in Python; implementations for other languages like Java, C#, PHP, Ruby, and Perl are not yet provided.\u003c/p\u003e\n"]]],[],null,["# Add Ad Group Image Asset\n\n### Java\n\n```\nThis example is not yet available in Java; you can take a look at the other languages.\n \n```\n\n### C#\n\n```\nThis example is not yet available in C#; you can take a look at the other languages.\n \n```\n\n### PHP\n\n```\nThis example is not yet available in PHP; you can take a look at the other languages.\n \n```\n\n### Python\n\n```python\n#!/usr/bin/env python\n# Copyright 2023 Google LLC\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# https://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\"\"\"This code example adds an ad group asset.\n\nTo upload image assets, run misc/upload_image_asset.py.\n\"\"\"\n\n\nimport argparse\nimport sys\n\nfrom google.ads.googleads.client import GoogleAdsClient\nfrom google.ads.googleads.errors import GoogleAdsException\nfrom google.ads.googleads.v21.resources.types.ad_group_asset import AdGroupAsset\nfrom google.ads.googleads.v21.services.services.ad_group_asset_service.client import (\n AdGroupAssetServiceClient,\n)\nfrom google.ads.googleads.v21.services.types.ad_group_asset_service import (\n AdGroupAssetOperation,\n MutateAdGroupAssetResult,\n MutateAdGroupAssetsResponse,\n)\n\n\ndef main(\n client: GoogleAdsClient,\n customer_id: str,\n ad_group_id: str,\n asset_id: str,\n) -\u003e None:\n ad_group_asset_service: AdGroupAssetServiceClient = client.get_service(\n \"AdGroupAssetService\"\n )\n ad_group_asset_resource_name: str = ad_group_asset_service.asset_path(\n customer_id, asset_id\n )\n\n ad_group_asset_operation: AdGroupAssetOperation = client.get_type(\n \"AdGroupAssetOperation\"\n )\n ad_group_asset_set: AdGroupAsset = ad_group_asset_operation.create\n ad_group_asset_set.asset = ad_group_asset_resource_name\n ad_group_asset_set.field_type = client.enums.AssetFieldTypeEnum.AD_IMAGE\n ad_group_asset_set.ad_group = ad_group_asset_service.ad_group_path(\n customer_id, ad_group_id\n )\n response: MutateAdGroupAssetsResponse = (\n ad_group_asset_service.mutate_ad_group_assets(\n customer_id=customer_id, operations=[ad_group_asset_operation]\n )\n )\n\n result: MutateAdGroupAssetResult\n for result in response.results:\n print(\n f\"Created ad group asset with resource name: '{result.resource_name}'\"\n )\n\n\nif __name__ == \"__main__\":\n parser = argparse.ArgumentParser(\n description=(\n \"Updates an ad group for specified customer and ad group \"\n \"id with the given image asset id.\"\n )\n )\n # The following argument(s) should be provided to run the example.\n parser.add_argument(\n \"-c\",\n \"--customer_id\",\n type=str,\n required=True,\n help=\"The Google Ads customer ID.\",\n )\n parser.add_argument(\n \"-a\", \"--ad_group_id\", type=str, required=True, help=\"The ad group ID.\"\n )\n parser.add_argument(\n \"-s\",\n \"--asset_id\",\n type=str,\n required=True,\n help=\"The asset ID.\",\n )\n args = parser.parse_args()\n\n # GoogleAdsClient will read the google-ads.yaml configuration file in the\n # home directory if none is specified.\n googleads_client = GoogleAdsClient.load_from_storage(version=\"v21\")\n\n try:\n main(\n googleads_client, args.customer_id, args.ad_group_id, args.asset_id\n )\n except GoogleAdsException as ex:\n print(\n f'Request with ID \"{ex.request_id}\" failed with status '\n f'\"{ex.error.code().name}\" and includes the following errors:'\n )\n for error in ex.failure.errors:\n print(f'\\tError with message \"{error.message}\".')\n if error.location:\n for field_path_element in error.location.field_path_elements:\n print(f\"\\t\\tOn field: {field_path_element.field_name}\")\n sys.exit(1)\nhttps://github.com/googleads/google-ads-python/blob/d0595698b8a7de6cc00684b467462601037c9db9/examples/misc/add_ad_group_image_asset.py\n \n```\n\n### Ruby\n\n```\nThis example is not yet available in Ruby; you can take a look at the other languages.\n \n```\n\n### Perl\n\n```\nThis example is not yet available in Perl; you can take a look at the other languages.\n \n```\n\n\u003cbr /\u003e"]]