보고
컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
다른 캠페인 유형과 마찬가지로 GoogleAdsService.SearchStream
를 사용하여 앱 캠페인의 속성 또는 실적 측정항목을 가져올 수 있습니다.
지난 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
광고 그룹 이름으로 정렬된 앱 캠페인 목록
아래 쿼리는 아직 사용할 수 있는 측정항목이 없더라도 광고 그룹 이름으로 정렬된 첫 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개
여러 앱의 게시자가 전환을 기준으로 상위 10개 앱을 파악하려면 다음 쿼리를 사용하면 됩니다.
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
앱 전환 및 조회 후 전환 또는 전환 추적 데이터에 대해 자세히 알아보세요.
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 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)."]]