Hi,
I've implemented video ad(Adtonomy video configuration) for my video site.
The adtonomy video type either pre-roll or post-roll.It depends on the category.
Now i needs to take report for this video ad.
The report should contains both impression count and click count.
The report should not be same as the actual video count.Because if the video ad type is post-roll and the user close the window or redirects to some other page before it reaches the post roll ad,then the ad count wont get increased and it remains same.
Which function should i use to get the this kind of reports?
Video ad link is:
http://202.65.145.182/videos1.aspx
Please help me
Regards,
Bharathi
@Bharathi,
Adtonomy doesn't generate these types of reports automatically. However, you can specify tracker events that ping URLs that you specify. This would generate the data you are requesting. From there you can build the reports you need.
The following Adtonomy configuration XML is an example.
<ad-program><ads>
<ad id="ad1">
<text_ad title="Your could run your own text ads"
description="with the Adtonomy Text Ads plugin" length="0:08" link="http://www.longtailvideo.com"
image_url="ad1image.gif"/>
<trackers>
<tracker type="impression" url="mytrackerurl1"/>
<tracker type="clicktrack" url="mytrackerurl2"/>
</trackers>
</ad>
</ads>
<spots>
<spot id="overlay1" timing="0:03" >
<allow ad_ids="ad1"/>
</spot>
</spots>
</ad-program>
Thanks.