애드클릭스의 URL별 보고서
http://devlog.experlab.com/290 에서 언급한 애드클릭스의 강점.
애드클릭스는 광고를 클릭한 페이지(URL) 의 위치와
어떤 광고를 클릭했는지 보고서로 보여준다.
이 보고서의 장점은 어떤 글에서 광고클릭 비율 분석이 가능하다.
정보성 글에서 많은지, 이슈성 글에서 많은지 분석이 가능하다.
애드센스는 그런 기능이 자체적으로 있지 않다.
다만 구글통계를 이용해 비슷한 정보를 얻을 수 있다.
애드센스에서 조금 복잡한 작업을 거치지만 가능하다.
(구글통계(google analytics) 의
다음 방법 을 이용한것.)
as_track.js ( 설치/사용방법은
http://plan9.co.kr/tt2/419 를 참조 )
해당소스를 적당한 위치에 복사하고, 스킨편집에서
<script src="/js/as_track.js" type="text/javascript"></script> 를 구글통계 스크립트 뒷 부분에 추가한다.( js 파일의 위치는 알아서 정하면 된다.)
as_track.js 소스보기
[code] function as_click () { urchinTracker ('/asclick'); } // incredibly funky onload add-event scripting, for all browsers if(typeof window.addEventListener != 'undefined') { //.. gecko, safari, konqueror and standard window.addEventListener('load', adsense_init, false); } else if(typeof document.addEventListener != 'undefined') { //.. opera 7 document.addEventListener('load', adsense_init, false); } else if(typeof window.attachEvent != 'undefined') { //.. win/ie window.attachEvent('onload', adsense_init); } //** remove this condition to degrade older browsers else { //.. mac/ie5 and anything else that gets this far //if there's an existing onload function if(typeof window.onload == 'function') { //store it var existing = onload; //add new onload handler window.onload = function() { //call existing onload function existing(); //call adsense_init onload function adsense_init(); }; } else { //setup onload function window.onload = adsense_init; } } function adsense_init () { if (document.all) { //ie var el = document.getElementsByTagName("iframe"); for(var i = 0; i < el.length; i++) { if(el[i].src.indexOf('googlesyndication.com') > -1) { el[i].onfocus = as_click; } } } else { // firefox window.addEventListener('beforeunload', doPageExit, false); window.addEventListener('mousemove', getMouse, true); } } //for firefox var px; var py; function getMouse(e) { px=e.pageX; py=e.clientY; } function findY(obj) { var y = 0; while (obj) { y += obj.offsetTop; obj = obj.offsetParent; } return(y); } function findX(obj) { var x = 0; while (obj) { x += obj.offsetLeft; obj = obj.offsetParent; } return(x); } function doPageExit(e) { ad = document.getElementsByTagName("iframe"); for (i=0; i<ad.length; i++) { var adLeft = findX(ad[i]); var adTop = findY(ad[i]); var inFrameX = (px > (adLeft - 10) && px < (parseInt(adLeft) + parseInt(ad[i].width) + 15)); var inFrameY = (py > (adTop - 10) && py < (parseInt(adTop) + parseInt(ad[i].height) + 10)); if (inFrameY && inFrameX) { urchinTracker('/asclick'); } } } //end for firefox [/code]
http://plan9.co.kr/tt2/421 에 있는 분석화면과 약간의 차이가 있는 듯 하다(그동안 업데이트 된 듯 함)
워낙 데이터가 적어 그렇지만, 어떤것을 보여주는지는 알 수 있다.(설정한지 하루밖에 안되었음)
애드클릭스의 장점을 애드센스에서도 맛볼 수 있다. ^^
# 이전 관련글과 자료.
2007/02/15 23:40 : 구글통계, 에드센스 - 재미있는 글.
http://plan9.co.kr/tt2/tag/Google%20Analytics http://plan9.co.kr/tt2/419
크리에이티브 커먼즈 라이선스
Recent Comment