測試廣告素材類型
透過集合功能整理內容
你可以依據偏好儲存及分類內容。
Google Mobile Ads SDK 提供的 API 可讓您指定
測試查詢所需的廣告素材類型設定該參數後
即可擷取並顯示符合所需類型的廣告素材。
用量
如要使用這項功能,您必須指定 ft_ctype
(強制測試廣告素材)
type) 請求參數
包含一組額外福利。
這個參數可指定所需的廣告素材類型。
請注意,只有在
測試模式。
Java
Bundle extras = new Bundle();
extras.putString("ft_ctype", "video_app_install");
AdRequest request = new AdRequest.Builder()
.addNetworkExtrasBundle(AdMobAdapter.class, extras)
.build();
Kotlin
val extras = Bundle()
extras.putString("ft_ctype", "video_app_install")
val request = AdRequest.Builder()
.addNetworkExtrasBundle(AdMobAdapter::class.java, extras)
.build()
以下是 ft_ctype
的有效值清單:
廣告素材類型 |
ft_ctype |
格式 |
HTML5 |
HTML5 |
橫幅廣告、插頁式、獎勵廣告 |
應用程式安裝圖片 |
image_app_install |
橫幅廣告、原生、插頁式廣告、獎勵廣告 |
多媒體圖像 |
image_display |
橫幅廣告、插頁式廣告 |
顯示部分版位 |
partial_slot |
橫幅廣告、原生、插頁式廣告 |
應用程式安裝文字 |
text_app_install |
橫幅廣告、原生、插頁式廣告 |
顯示文字 |
text_display |
橫幅廣告、原生、插頁式廣告 |
TrueView |
TrueView |
插頁式、獎勵廣告 |
應用程式安裝影片 |
video_app_install |
橫幅廣告、原生、插頁式廣告、獎勵廣告 |
注意事項
- 這項功能會限制哪些廣告可供請求,進而
可能會導致無法供應廣告
- 這項功能只會影響 Google Ads。如果您的廣告單元啟用了
中介服務,則傳回的廣告
來自第三方廣告聯播網,不會遵循
ft_ctype
參數。三
建議您只使用未啟用中介服務的廣告單元進行測試。
除非另有註明,否則本頁面中的內容是採用創用 CC 姓名標示 4.0 授權,程式碼範例則為阿帕契 2.0 授權。詳情請參閱《Google Developers 網站政策》。Java 是 Oracle 和/或其關聯企業的註冊商標。
上次更新時間:2024-10-14 (世界標準時間)。
[[["容易理解","easyToUnderstand","thumb-up"],["確實解決了我的問題","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["缺少我需要的資訊","missingTheInformationINeed","thumb-down"],["過於複雜/步驟過多","tooComplicatedTooManySteps","thumb-down"],["過時","outOfDate","thumb-down"],["翻譯問題","translationIssue","thumb-down"],["示例/程式碼問題","samplesCodeIssue","thumb-down"],["其他","otherDown","thumb-down"]],["上次更新時間:2024-10-14 (世界標準時間)。"],[[["The Google Mobile Ads SDK allows you to specify a desired creative type for test queries, ensuring only creatives of that type are retrieved and rendered."],["To use this feature, set the `ft_ctype` request parameter within a bundle of extras in test mode, specifying the desired creative type like \"video_app_install\" or \"html5\"."],["This feature works with various creative types, formats, and ad units, as detailed in the provided table mapping creative types to their corresponding `ft_ctype` values."],["While useful for testing, using `ft_ctype` may increase the chance of no fills and only affects Google ads, not those from third-party ad networks through mediation."]]],[]]