ชื่อทรัพยากร
จัดทุกอย่างให้เป็นระเบียบอยู่เสมอด้วยคอลเล็กชัน
บันทึกและจัดหมวดหมู่เนื้อหาตามค่ากำหนดของคุณ
ตัวระบุที่ไม่ซ้ำกันสำหรับเอนทิตีใน Google Ads API จะเรียกว่าทรัพยากร
และแสดงเป็นสตริงที่มีรูปแบบที่คาดการณ์ได้ หากคุณทราบ
ส่วนประกอบของชื่อทรัพยากร คุณสามารถใช้ยูทิลิตีนี้เพื่อ
สร้างชื่อทรัพยากรสุดท้าย
คลาส ResourceNames
คลาส ResourceNames
เป็นวิธีสร้างชื่อทรัพยากรของเอนทิตี
หากคุณทราบรหัสทั้งหมดที่เกี่ยวข้องกับเอนทิตีนั้น ตัวอย่างเช่น
ชื่อทรัพยากรแคมเปญมีรูปแบบดังนี้
customers/{customer_id}/campaigns/{campaign_id}
ดังนั้นหากคุณทราบรหัสลูกค้าและรหัสแคมเปญ คุณสามารถใช้
คลาส ResourceNames
จะสร้างชื่อทรัพยากรแบบเต็มดังนี้
String campaignResourceName = ResourceNames.campaign(customerId, campaignId);
คุณสามารถใช้ชื่อเอนทิตีอื่นๆ ได้เช่นกัน ซึ่งจะใช้รหัสต่างกันโดยขึ้นอยู่กับ
รูปแบบสุดท้ายของชื่อทรัพยากร
เนื้อหาของหน้าเว็บนี้ได้รับอนุญาตภายใต้ใบอนุญาตที่ต้องระบุที่มาของครีเอทีฟคอมมอนส์ 4.0 และตัวอย่างโค้ดได้รับอนุญาตภายใต้ใบอนุญาต Apache 2.0 เว้นแต่จะระบุไว้เป็นอย่างอื่น โปรดดูรายละเอียดที่นโยบายเว็บไซต์ Google Developers Java เป็นเครื่องหมายการค้าจดทะเบียนของ Oracle และ/หรือบริษัทในเครือ
อัปเดตล่าสุด 2025-08-21 UTC
[null,null,["อัปเดตล่าสุด 2025-08-21 UTC"],[[["\u003cp\u003eThe Google Ads API uses unique identifiers called resource names to represent entities.\u003c/p\u003e\n"],["\u003cp\u003eResource names follow a predictable format and can be generated using their components.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003eResourceNames\u003c/code\u003e class allows you to construct a resource name using relevant IDs, such as customer ID and campaign ID.\u003c/p\u003e\n"],["\u003cp\u003eUsing entity names like \u003ccode\u003ecampaign\u003c/code\u003e with appropriate IDs in the \u003ccode\u003eResourceNames\u003c/code\u003e class generates the full resource name string.\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\nthe constituent components of a resource name, you can use this utility to\ngenerate the final resource name.\n\nResourceNames class\n-------------------\n\nThe `ResourceNames` class 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\n customers/{customer_id}/campaigns/{campaign_id}\n\nSo if you know the customer ID and the campaign ID, you can use the\n`ResourceNames` class construct the full resource name as follows: \n\n String campaignResourceName = ResourceNames.campaign(customerId, campaignId);\n\nYou can use other entity names as well, which take different IDs depending on\nthe final form of the resource name."]]