0
我正在開發PhoneGap \ Cordova平臺上的應用程序,並且願意集成MobFox視頻廣告。在Cordova Phonegap應用程序中使用VAST2.0播放視頻廣告
我嘗試播放視頻廣告,獲得來自的MobFox廣告服務器使用VAST 2.0 XML時,卻無法弄清楚如何...
對任何幫助或方向感到高興!
我正在開發PhoneGap \ Cordova平臺上的應用程序,並且願意集成MobFox視頻廣告。在Cordova Phonegap應用程序中使用VAST2.0播放視頻廣告
我嘗試播放視頻廣告,獲得來自的MobFox廣告服務器使用VAST 2.0 XML時,卻無法弄清楚如何...
對任何幫助或方向感到高興!
只需按照MobFox官方指南,無需處理XML,只需調用API。查看Android的java示例代碼:
mManager = new AdManager(this, "http://my.mobfox.com/request.php","ENTER_PUBLISHER_ID_HERE", true);
mManager.setListener(this);
mManager.setInterstitialAdsEnabled(true); //enabled by default. Allows the SDK to request static interstitial ads.
mManager.setVideoAdsEnabled(true); //disabled by default. Allows the SDK to request video fullscreen ads.
mManager.setPrioritizeVideoAds(true); //disabled by default. If enabled, indicates that SDK should request video ads first, and only if there is no video request an interstitial (if enabled)
mManager.requestAd();
您是否將基於Phonegap的移動應用程序中的巨大標籤集成在一起。 – 2014-12-09 21:20:13