שמות המשאבים
קל לארגן דפים בעזרת אוספים
אפשר לשמור ולסווג תוכן על סמך ההעדפות שלך.
הכלי ResourceNames מאפשר ליצור את שם המשאב של ישות אם ידועים לכם כל המזהים הרלוונטיים שקשורים לישות הזו. לדוגמה, שם משאב של קמפיין הוא בפורמט customers/<CUSTOMER_ID>/campaigns/<CAMPAIGN_ID>
, כך שאם אתם יודעים את מזהה הלקוח ואת מזהה הקמפיין, אתם יכולים להשתמש בכלי ResourceNames
כדי ליצור את השם המלא של המשאב.
אם $customerId
מכיל את מספר הלקוח ו-$campaignId
מכיל את מזהה הקמפיין, אפשר להשתמש ב-forCampaign כדי לקבל את שם המשאב של הקמפיין, כמו בדוגמה הבאה:
$campaignResourceName = ResourceNames::forCampaign($customerId, $campaignId)
לכל ישות יש קבוצה שונה של מזהים שמרכיבים את שם המשאב. לדוגמה, שם המשאב של קריטריון לקבוצת מודעות צריך לכלול מזהה לקוח, מזהה קבוצת מודעות ומזהה קריטריון לקבוצת מודעות.
אלא אם צוין אחרת, התוכן של דף זה הוא ברישיון Creative Commons Attribution 4.0 ודוגמאות הקוד הן ברישיון Apache 2.0. לפרטים, ניתן לעיין במדיניות האתר Google Developers. Java הוא סימן מסחרי רשום של חברת Oracle ו/או של השותפים העצמאיים שלה.
עדכון אחרון: 2025-08-27 (שעון UTC).
[null,null,["עדכון אחרון: 2025-08-27 (שעון UTC)."],[[["\u003cp\u003eThe \u003ccode\u003eResourceNames\u003c/code\u003e utility helps build resource names for Google Ads entities using their respective IDs.\u003c/p\u003e\n"],["\u003cp\u003eYou need to provide the necessary IDs, like customer ID and campaign ID, to construct a specific resource name.\u003c/p\u003e\n"],["\u003cp\u003eEach Google Ads entity type has a unique set of IDs required for its resource name, such as ad group criteria needing customer ID, ad group ID, and criterion ID.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eResourceNames\u003c/code\u003e offers functions like \u003ccode\u003eforCampaign\u003c/code\u003e to easily generate resource names for specific entities.\u003c/p\u003e\n"]]],[],null,["# Resource Names\n\nThe\n[ResourceNames](https://github.com/googleads/google-ads-php/blob/HEAD/src/Google/Ads/GoogleAds/Util/V21/ResourceNames.php)\nutility is a way to construct the resource name of an entity if you know all of\nthe relevant IDs related to that entity. For example, a campaign resource name\nis in the format `customers/\u003cCUSTOMER_ID\u003e/campaigns/\u003cCAMPAIGN_ID\u003e`, so if you\nknow the customer ID and the campaign ID, you can use the `ResourceNames`\nutility to construct the full resource name.\n\nProvided that `$customerId` contains your customer ID and `$campaignId` contains\nyour campaign ID, you can use\n[forCampaign](https://github.com/googleads/google-ads-php/blob/HEAD/src/Google/Ads/GoogleAds/Util/V21/ResourceNames.php#L141)\nto get the resource name of the campaign as shown below: \n\n $campaignResourceName = ResourceNames::forCampaign($customerId, $campaignId)\n\nEach entity has a different set of IDs that composes the resource name. For\ninstance, the resource name of an ad group criterion needs a customer ID, ad\ngroup ID, and ad group criterion ID."]]