资源名称
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
Google Ads API 中实体的唯一标识符称为资源名称,以可预测格式的字符串表示。如果您知道资源名称的组成部分,可以使用此实用程序生成最终的资源名称。
ResourceNames 类
如果您知道与实体相关的所有 ID,可以使用 ResourceNames
实用程序来构建实体的资源名称。例如,广告系列资源名称的格式为 customers/{customer_id}/campaigns/{campaign_id}
,因此如果您知道客户 ID 和广告系列 ID,可以使用 ResourceNames
实用程序来构建完整的资源名称,如下所示:
my $resource_name =
Google::Ads::GoogleAds::V21::Utils::ResourceNames::campaign($customer_id,
$campaign_id);
您也可以使用其他实体名称,这些名称会根据资源名称的最终形式采用不同的 ID。
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2025-08-27。
[null,null,["最后更新时间 (UTC):2025-08-27。"],[[["\u003cp\u003eGoogle Ads API entities are uniquely identified by resource names, which are strings with predictable formats based on their components.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003eResourceNames\u003c/code\u003e utility helps construct these resource names when you know the necessary IDs, such as customer and campaign IDs.\u003c/p\u003e\n"],["\u003cp\u003eYou can use the \u003ccode\u003eResourceNames\u003c/code\u003e utility with various entity names, providing the corresponding IDs needed for the specific resource name structure.\u003c/p\u003e\n"]]],[],null,["# Resource Names\n\nThe unique identifier for an entity in the Google Ads API is called a resource\nname, and is represented as a string with a predictable format. If you know the\nconstituent components of a resource name, you can use this utility to generate\nthe final resource name.\n\nResourceNames class\n-------------------\n\nThe `ResourceNames` utility is a way to construct the resource name of an entity\nif you know all of the relevant IDs related to that entity. For example, a\ncampaign resource name is in the format\n`customers/{customer_id}/campaigns/{campaign_id}`, so if you know the customer\nID and the campaign ID, you can use the `ResourceNames` utility to construct the\nfull resource name as follows: \n\n my $resource_name =\n Google::Ads::GoogleAds::V21::Utils::ResourceNames::campaign($customer_id,\n $campaign_id);\n\nYou can use other entity names as well, which take different IDs depending on\nthe final form of the resource name."]]