「TAMedia MobileWeb InRead 廣告使用 AdManager 串接教學」修訂間的差異
跳至導覽
跳至搜尋
imported>Wikiuser |
imported>Wikiuser |
||
行 3: | 行 3: | ||
{| class="wikitable" | {| class="wikitable" | ||
| TAMedia 廣告類型 | | TAMedia 廣告類型 | ||
| | | AD Manager 對應的廣告大小 | ||
|- | |- | ||
| InRead 300 x 250 | | InRead 300 x 250 | ||
| | | 1 x 1 or 300 x 250 | ||
|- | |- | ||
| InRead 1200 x 627 | | InRead 1200 x 627 | ||
| | | 1 x 1 | ||
|- | |- | ||
| InRead Interscroller | | InRead Interscroller | ||
| | | 1 x 1 | ||
|- | |- | ||
| InRead Anchor | | InRead Anchor | ||
| | | 1 x 1 | ||
|} | |} | ||
於 2019年2月21日 (四) 08:59 的修訂
TAMedia 廣告 與 Ad Manager 廣告大小對應表
TAMedia 廣告類型 | AD Manager 對應的廣告大小 |
InRead 300 x 250 | 1 x 1 or 300 x 250 |
InRead 1200 x 627 | 1 x 1 |
InRead Interscroller | 1 x 1 |
InRead Anchor | 1 x 1 |
使用 Ad Manager 的串接方法
方法 1:選擇 Ad Manager 廣告單元 1 x 1 進行串接(以下以插頁式廣告為例)
- 放送到 Safeframe:請勿勾選
- 請自行先將請求廣告(adLoad2)之參數自行修改再使用
- 直接貼到 Ad Manager "第三方"串接範例:
<script type="text/javascript" src="https://adc.tamedia.com.tw/rmadp/static/js/tam-dfp-mediation.js"></script>
<script type="text/javascript" language="javascript">
adLoad2('testSlot12345', '99', 'TAM_testSlot12345', true, 0, tamOnReceiveAdInt);
function tamOnReceiveAdInt(status){
console.log('%c[TAMedia]%c Int Callback status : ' + status, 'background:#DDDDDD;color:#FF5511;', 'background:#DDDDDD;color:#000000;');
}
</script>
使用 Passback
- 請從 Ad Manager 以一般產出代碼方式取得必要資訊帶入 dfpPassback 函式(依序為 "廣告單元ID", "Div Tag ID", "Size Array")
<script type="text/javascript" src="https://adc.tamedia.com.tw/rmadp/static/js/tam-dfp-mediation.js"></script>
<script type="text/javascript" language="javascript">
adLoad2('testSlot12345', '99', 'TAM_testSlot12345', true, 0, tamOnReceiveAdInt);
function tamOnReceiveAdInt(status){
console.log('%c[TAMedia]%c Int Callback status : ' + status, 'background:#DDDDDD;color:#FF5511;', 'background:#DDDDDD;color:#000000;');
if('00' != status){
dfpPassback('/12345678/intOTHER_12345678', 'div-gpt-ad-1234567890-0', [320, 480]);
}
}
</script>