การรายงาน
จัดทุกอย่างให้เป็นระเบียบอยู่เสมอด้วยคอลเล็กชัน
บันทึกและจัดหมวดหมู่เนื้อหาตามค่ากำหนดของคุณ
เช่นเดียวกับแคมเปญประเภทอื่นๆ คุณสามารถใช้
GoogleAdsService.SearchStream
เพื่อดึงแอตทริบิวต์และ / หรือเมตริกประสิทธิภาพสําหรับ App Campaign ได้
การแสดงผลและการคลิกของ App Campaign ในช่วง 30 วันที่ผ่านมา
คําค้นหาด้านล่างจะดึงข้อมูลการแสดงผลและการคลิกจาก 30 วันที่ผ่านมาสําหรับ
แคมเปญแอปทั้งหมด โดยแบ่งกลุ่มตามวันที่
SELECT
campaign.id,
campaign.name,
campaign.advertising_channel_type,
campaign.advertising_channel_sub_type,
campaign.app_campaign_setting.app_id,
campaign.app_campaign_setting.app_store,
campaign.app_campaign_setting.bidding_strategy_goal_type,
segments.date,
metrics.impressions,
metrics.clicks
FROM campaign
WHERE
campaign.advertising_channel_type = 'MULTI_CHANNEL'
AND campaign.advertising_channel_sub_type IN
('APP_CAMPAIGN', 'APP_CAMPAIGN_FOR_ENGAGEMENT')
AND segments.date DURING LAST_30_DAYS
รายการ App Campaign ที่จัดเรียงตามชื่อกลุ่มโฆษณา
คําค้นหาด้านล่างจะดึง App Campaign 100 รายการแรก แม้ว่าจะยังไม่มีเมตริก
ก็ตาม โดยจะจัดเรียงตามชื่อกลุ่มโฆษณา
SELECT
ad_group.name,
campaign.app_campaign_setting.app_id,
campaign.app_campaign_setting.bidding_strategy_goal_type,
campaign.app_campaign_setting.app_store
FROM ad_group
WHERE
campaign.advertising_channel_type = 'MULTI_CHANNEL'
AND campaign.advertising_channel_sub_type = 'APP_CAMPAIGN'
ORDER BY ad_group.name ASC
LIMIT 100
แอป 10 อันดับแรกตาม Conversion
หากผู้เผยแพร่แอปหลายรายการต้องการทราบว่าแอปใดเป็น 10 อันดับแรก
ตาม Conversion สามารถใช้คําค้นหาต่อไปนี้
SELECT
campaign.app_campaign_setting.app_id,
metrics.all_conversions,
metrics.view_through_conversions
FROM campaign
WHERE campaign.app_campaign_setting.app_id LIKE 'com.google.android.apps.%'
ORDER BY metrics.all_conversions DESC
LIMIT 10
ดูข้อมูลเพิ่มเติมเกี่ยวกับ Conversion ของแอปและ Conversion การดูผ่าน
หรือข้อมูลเครื่องมือวัด Conversion
เนื้อหาของหน้าเว็บนี้ได้รับอนุญาตภายใต้ใบอนุญาตที่ต้องระบุที่มาของครีเอทีฟคอมมอนส์ 4.0 และตัวอย่างโค้ดได้รับอนุญาตภายใต้ใบอนุญาต Apache 2.0 เว้นแต่จะระบุไว้เป็นอย่างอื่น โปรดดูรายละเอียดที่นโยบายเว็บไซต์ Google Developers Java เป็นเครื่องหมายการค้าจดทะเบียนของ Oracle และ/หรือบริษัทในเครือ
อัปเดตล่าสุด 2025-08-27 UTC
[null,null,["อัปเดตล่าสุด 2025-08-27 UTC"],[[["\u003cp\u003eUse \u003ccode\u003eGoogleAdsService.SearchStream\u003c/code\u003e to retrieve App campaign data, including attributes and performance metrics.\u003c/p\u003e\n"],["\u003cp\u003eProvided are example queries to get impressions and clicks of App campaigns for the last 30 days, list App campaigns sorted by ad group name, and identify the top 10 apps by conversions.\u003c/p\u003e\n"],["\u003cp\u003eQueries can be tailored to specific needs such as filtering by date range, campaign type (APP_CAMPAIGN or APP_CAMPAIGN_FOR_ENGAGEMENT), or app ID.\u003c/p\u003e\n"],["\u003cp\u003eLearn more about app conversions, view-through conversions, and conversion tracking data using the provided links.\u003c/p\u003e\n"]]],[],null,["# Reporting\n\nAs with other campaign types, you can use\n[`GoogleAdsService.SearchStream`](/google-ads/api/reference/rpc/v21/GoogleAdsService/SearchStream)\nto retrieve attributes and / or performance metrics for App campaigns.\n\nImpressions and clicks of App Campaigns in last 30 days\n-------------------------------------------------------\n\nThe query below will retrieve impressions and clicks from the last 30 days for\nall App campaigns, segmented by date. \n\n SELECT\n campaign.id,\n campaign.name,\n campaign.advertising_channel_type,\n campaign.advertising_channel_sub_type,\n campaign.app_campaign_setting.app_id,\n campaign.app_campaign_setting.app_store,\n campaign.app_campaign_setting.bidding_strategy_goal_type,\n segments.date,\n metrics.impressions,\n metrics.clicks\n FROM campaign\n WHERE\n campaign.advertising_channel_type = 'MULTI_CHANNEL'\n AND campaign.advertising_channel_sub_type IN\n ('APP_CAMPAIGN', 'APP_CAMPAIGN_FOR_ENGAGEMENT')\n AND segments.date DURING LAST_30_DAYS\n\nList of app campaigns ordered by ad group name\n----------------------------------------------\n\nThe query below will retrieve the first 100 app campaigns, even if no metrics\nare yet available, sorted by ad group name. \n\n SELECT\n ad_group.name,\n campaign.app_campaign_setting.app_id,\n campaign.app_campaign_setting.bidding_strategy_goal_type,\n campaign.app_campaign_setting.app_store\n FROM ad_group\n WHERE\n campaign.advertising_channel_type = 'MULTI_CHANNEL'\n AND campaign.advertising_channel_sub_type = 'APP_CAMPAIGN'\n ORDER BY ad_group.name ASC\n LIMIT 100\n\nTop 10 apps by conversions\n--------------------------\n\nIf a publisher of multiple apps would like to understand which are the top ten\napps by conversions, the following query can be used: \n\n SELECT\n campaign.app_campaign_setting.app_id,\n metrics.all_conversions,\n metrics.view_through_conversions\n FROM campaign\n WHERE campaign.app_campaign_setting.app_id LIKE 'com.google.android.apps.%'\n ORDER BY metrics.all_conversions DESC\n LIMIT 10\n\nLearn more about [app conversions and view through conversions](//support.google.com/google-ads/answer/6100665)\nor [conversion tracking data](//support.google.com/google-ads/answer/6270625)."]]