คู่มือนี้จะอธิบายภาพรวมคร่าวๆ เกี่ยวกับวิธีเริ่มต้นใช้งานไลบรารี .NET ของ Google Ads API
การติดตั้ง
ระบบจะกระจายไบนารีไลบรารีของไคลเอ็นต์โดยใช้ NuGet เพิ่มการอ้างอิง NuGet ไปยังGoogle.Ads.GoogleAds
แพ็กเกจในโปรเจ็กต์เพื่อใช้
ไลบรารีไคลเอ็นต์
ตั้งค่าการให้สิทธิ์
หากต้องการให้สิทธิ์การเรียก API คุณต้องระบุรหัสไคลเอ็นต์ ข้อมูลลับไคลเอ็นต์ โทเค็นรีเฟรช และโทเค็นนักพัฒนาแอปลงในไลบรารี
หากต้องการสร้างข้อมูลเข้าสู่ระบบ
- ทำตามคู่มือโทเค็นของนักพัฒนาแอปเพื่อรับโทเค็นของนักพัฒนาแอป หากยังไม่มี
- ทำตามคำแนะนำขั้นตอนสำหรับแอปเดสก์ท็อป OAuth เพื่อสร้างรหัสไคลเอ็นต์ รหัสลับไคลเอ็นต์ และโทเค็นรีเฟรช
หากคุณมีข้อมูลเข้าสู่ระบบอยู่แล้ว
- คัดลอกโหนด
GoogleAdsApi
และส่วนGoogleAdsApi
ใต้โหนดconfigSections
จากไฟล์App.config
ใน GitHub ลงในไฟล์App.config
/Web.config
หากคุณใช้ NuGet เพื่อติดตั้งแพ็กเกจ ระบบจะแทรกโหนดเหล่านี้ลงในไฟล์App.config
/Web.config
โดยอัตโนมัติ - ใส่โทเค็นนักพัฒนาแอป รหัสไคลเอ็นต์ รหัสลับไคลเอ็นต์ และโทเค็นรีเฟรชใน
App.config
/Web.config
ของแอป
ไฟล์ App.config
ที่รวมอยู่ใน GitHub มีเอกสารประกอบที่ชัดเจน แต่คุณยังดูข้อมูลเพิ่มเติมได้จากคำแนะนำในการกำหนดค่า รวมถึงใช้วิธีอื่นในการกำหนดค่าไลบรารีไคลเอ็นต์ได้ เช่น ตัวแปรของสภาพแวดล้อม
เรียก API
การใช้งานพื้นฐานของไลบรารีไคลเอ็นต์มีดังนี้
// Create a Google Ads client.
GoogleAdsClient client = new GoogleAdsClient();
// Create the required service.
CampaignServiceClient campaignService =
client.GetService(Services.V18.CampaignService);
// Make more calls to service class.
สร้างอินสแตนซ์ GoogleAdsClient
คลาสที่สําคัญที่สุดในไลบรารี .NET ของ Google Ads API คือคลาส GoogleAdsClient
ซึ่งช่วยให้คุณสร้างคลาสบริการที่กําหนดค่าไว้ล่วงหน้าได้ ซึ่งสามารถใช้สําหรับการเรียก API GoogleAdsClient
มีตัวสร้างเริ่มต้นที่สร้างออบเจ็กต์ผู้ใช้โดยใช้การตั้งค่าที่ระบุใน App.config
/ Web.config
ของแอป ดูตัวเลือกการกำหนดค่าได้ในคู่มือการกำหนดค่า
// Create a new GoogleAdsClient with the App.config settings.
GoogleAdsClient user = new GoogleAdsClient();
สร้างบริการ
GoogleAdsClient
มีเมธอด GetService
ที่ใช้สร้างบริการ Google Ads ได้
CampaignServiceClient campaignService = client.GetService(Services.V18.CampaignService);
// Now make calls to CampaignService.
เรามีคลาส Services
ที่แจกแจงเวอร์ชัน API และบริการที่รองรับทั้งหมด เมธอด GetService
จะยอมรับออบเจ็กต์การแจกแจงเหล่านี้เป็นอาร์กิวเมนต์เมื่อสร้างบริการ เช่น หากต้องการสร้างอินสแตนซ์ของ CampaignServiceClient
สําหรับ Google Ads API เวอร์ชัน V18
คุณจะต้องเรียกใช้เมธอด GoogleAdsClient.GetService
โดยมี Services.V18.CampaignService
เป็นอาร์กิวเมนต์ ดังที่แสดงในตัวอย่างก่อนหน้า
ความปลอดภัยของชุดข้อความ
การแชร์อินสแตนซ์ GoogleAdsClient
ระหว่างเทรดหลายรายการเป็นสิ่งที่ไม่ปลอดภัย เนื่องจากการเปลี่ยนแปลงการกำหนดค่าที่คุณทำกับอินสแตนซ์ในเทรดหนึ่งอาจส่งผลต่อบริการที่คุณสร้างในเทรดอื่นๆ การดำเนินการต่างๆ เช่น การรับอินสแตนซ์บริการใหม่จากอินสแตนซ์ GoogleAdsClient
และการเรียกใช้บริการหลายรายการพร้อมกันจะทำงานได้อย่างปลอดภัยในเธรด
แอปพลิเคชันแบบหลายเธรดจะมีลักษณะดังนี้
GoogleAdsClient client1 = new GoogleAdsClient();
GoogleAdsClient client2 = new GoogleAdsClient();
Thread userThread1 = new Thread(addAdGroups);
Thread userThread2 = new Thread(addAdGroups);
userThread1.start(client1);
userThread2.start(client2);
userThread1.join();
userThread2.join();
public void addAdGroups(object data) {
GoogleAdsClient client = (GoogleAdsClient) data;
// Do more operations here.
...
}
หลีกเลี่ยงการหยุดทำงานในแอปพลิเคชัน .NET Framework
เมธอดแบบซิงโครนัสอาจทำให้แอปพลิเคชัน .NET Framework บางรายการค้าง ตัวอย่างทั่วไปคือการเรียก API จากเมธอดเครื่องจัดการเหตุการณ์ของแอปพลิเคชัน WinForm
การแก้ไขปัญหานี้ทำได้ 2 วิธีดังนี้
ใช้ไลบรารี Grpc รุ่นเดิม
คุณสามารถตั้งค่าพร็อพเพอร์ตี้
UseGrpcCore
ของGoogleAdsConfig
ให้ใช้ไลบรารีGrpc.Core
รุ่นเดิมแทนไลบรารีGrpc.Net.Client
เริ่มต้นได้ วิธีการนี้ยังไม่ได้รับการทดสอบอย่างละเอียดในแอปพลิเคชัน .NET Framework จึงอาจแก้ปัญหาไม่ได้ โดยมีตัวอย่างข้อมูลโค้ดดังต่อไปนี้GoogleAdsConfig config = new GoogleAdsConfig(); config.UseGrpcCore = true; GoogleAdsClient client = new GoogleAdsClient(config);
หน้าการสนับสนุน gRPC มีรายละเอียดเพิ่มเติมเกี่ยวกับความแตกต่างระหว่างไลบรารี
Grpc.Core
รุ่นเดิมกับไลบรารีGrpc.Net.Client
เริ่มต้นใช้วิธีการที่ไม่พร้อมกัน
คุณสามารถใช้เมธอดแบบไม่พร้อมกันเพื่อหลีกเลี่ยงการหยุดทำงาน ตัวอย่างเช่น
SearchStream
จะมีการเรียกไปยัง
SearchStream()
และผลลัพธ์จะ เพิ่มลงในมุมมองรายการprivate async void button1_Click(object sender, EventArgs e) { // Get the GoogleAdsService. GoogleAdsServiceClient googleAdsService = client.GetService( Services.V18.GoogleAdsService); // Create a query that will retrieve all campaigns. string query = @"SELECT campaign.id, campaign.name, campaign.network_settings.target_content_network FROM campaign ORDER BY campaign.id"; List
items = new List (); Task t = googleAdsService.SearchStreamAsync(customerId.ToString(), query, delegate (SearchGoogleAdsStreamResponse resp) { foreach (GoogleAdsRow googleAdsRow in resp.Results) { ListViewItem item = new ListViewItem(); item.Text = googleAdsRow.Campaign.Id.ToString(); item.SubItems.Add(googleAdsRow.Campaign.Name); items.Add(item); } } ); await t; listView1.Items.AddRange(items.ToArray()); } งบประมาณแคมเปญ
ระบบจะสร้างการเรียกใช้ CampaignBudget และแสดงชื่อทรัพยากรของงบประมาณใหม่โดยใช้การแจ้งเตือน
MessageBox
private async void button2_Click(object sender, EventArgs e) { // Get the BudgetService. CampaignBudgetServiceClient budgetService = client.GetService( Services.V18.CampaignBudgetService); // Create the campaign budget. CampaignBudget budget = new CampaignBudget() { Name = "Interplanetary Cruise Budget #" + ExampleUtilities.GetRandomString(), DeliveryMethod = BudgetDeliveryMethod.Standard, AmountMicros = 500000 }; // Create the operation. CampaignBudgetOperation budgetOperation = new CampaignBudgetOperation() { Create = budget }; // Create the campaign budget. Task
t = budgetService.MutateCampaignBudgetsAsync( customerId.ToString(), new CampaignBudgetOperation[] { budgetOperation }); await t; MutateCampaignBudgetsResponse response = t.Result; MessageBox.Show(response.Results[0].ResourceName); }
การจัดการข้อผิดพลาด
การเรียก API บางรายการอาจไม่สำเร็จ เซิร์ฟเวอร์อาจแสดงข้อผิดพลาดหากการเรียก API ของคุณล้มเหลวด้วยเหตุผลบางอย่าง สิ่งสำคัญคือต้องบันทึกข้อผิดพลาด API และจัดการกับข้อผิดพลาดเหล่านั้นอย่างเหมาะสม
ระบบจะส่งอินสแตนซ์ GoogleAdsException
เมื่อเกิดข้อผิดพลาดของ API โดยจะมีรายละเอียดเพื่อช่วยให้คุณทราบว่าเกิดข้อผิดพลาดใดขึ้น
// Get the CampaignService.
CampaignServiceClient campaignService = client.GetService(Services.V18.CampaignService);
// Create a campaign for update.
Campaign campaignToUpdate = new Campaign()
{
ResourceName = ResourceNames.Campaign(customerId, campaignId),
// More fields to update.
// ...
};
// Create the operation.
CampaignOperation operation = new CampaignOperation()
{
Update = campaignToUpdate,
UpdateMask = FieldMasks.AllSetFieldsOf(campaignToUpdate)
};
try
{
// Update the campaign.
MutateCampaignsResponse response = campaignService.MutateCampaigns(
customerId.ToString(), new CampaignOperation[] { operation });
// Display the results.
// ...
}
catch (GoogleAdsException e)
{
Console.WriteLine("Failure:");
Console.WriteLine($"Message: {e.Message}");
// Can examine to get more error details.
Console.WriteLine($"Failure: {e.Failure}");
// Can be shared with Google for further troubleshooting.
Console.WriteLine($"Request ID: {e.RequestId}");
}