Android - 自定義廣告請求參數
幫助您取得更多廣告功能與資料收集
幫助您取得更多廣告功能與資料收集
您可以在建立廣告請求時,選擇性地加入以下自定義的參數,讓 Vpon 可以用更精準的方式投放廣告
VponAdRequest.Builder builder = new VponAdRequest.Builder();
builder.setAutoRefresh(boolean);
// Only available for Banner Ad, will auto refresh ad if set true
builder.addTestDevice(String);
// Set your test device's GAID here if you're trying to get Vpon test ad
builder.setGender(VponAdRequest.Gender.UNSPECIFIED);
// Set user's gender if available
builder.setBirthday(Date);
// Set user's birthday if available
builder.setLocation(Location);
// Set user's location if available
builder.setMaxAdContentRating(String);
// To set up the maximum content rating filter
builder.setTagForUnderAgeOfConsent(-1);
// To set up if the ads will be displayed only to the specific ages of audience
builder.tagForChildDirectedTreatment(-1);
// To set up if the ads will be displayed to childern specific
builder.addKeyword(String);
builder.addKeywords(Set<String>);
您可以透過 setContentUrl
及 setContentData
將頁面內容資訊透過 SDK 發給 Vpon
Note: 此功能適用於
Vpon SDK v5.1.1
及以上版本
VponAdRequest.Builder builder = new VponAdRequest.Builder();
HashMap<String, Object> contentData = new HashMap<>();
contentData.put("key1", "Vpon");
contentData.put("key2", 1.2);
contentData.put("key3", true);
builder.setContentData(contentData);
builder.setContentUrl("https://www.vpon.com/zh-hant/");
如果您是使用 Mediation 的方式來串接 Vpon SDK,您可以透過以下方式,將頁面內容資訊發給 Vpon:
若您是使用 AdMob / Google Ad Manager 來進行 Mediation,請確認您所使用的 SDK 及 Adapter 版本:
Vpon SDK v5.1.1
及以上版本Vpon AdMob Adapter v2.0.1
及以上版本若您串接的是橫幅廣告或插頁廣告,請參考以下範例:
AdRequest.Builder builder = new AdRequest.Builder();
Bundle bundle = new Bundle();
HashMap<String, Object> contentData = new HashMap<>();
contentData.put("key1", "Vpon");
contentData.put("key2", 1.2);
contentData.put("key3", true);
bundle.putSerializable(AD_CONTENT_DATA, contentData);
bundle.putSerializable(AD_CONTENT_URL, "https://www.vpon.com/zh-hant/");
builder.addNetworkExtrasBundle(VpadnAdapter.class, bundle);
adLoader.loadAd(builder.build());
若您串接的是原生廣告,請參考以下範例:
AdRequest.Builder builder = new AdRequest.Builder();
Bundle bundle = new Bundle();
HashMap<String, Object> contentData = new HashMap<>();
contentData.put("key1", "Vpon");
contentData.put("key2", 1.2);
contentData.put("key3", true);
bundle.putSerializable(AD_CONTENT_DATA, contentData);
bundle.putSerializable(AD_CONTENT_URL, "https://www.vpon.com/zh-hant/");
builder.addNetworkExtrasBundle(VpadnAdapter.class, bundle);
adLoader.loadAd(builder.build());