vrihlea
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2017
04:59 AM
Roku_Ads, no "% of video ad rendered" events
Library "Roku_Ads.brs"
adIface = Roku_Ads()
adIface.setTrackingCallback(adTrackingCallback, {
...
}
sub adTrackingCallback(obj = invalid as Dynamic, eventType = invalid as Dynamic, ctx = invalid as Dynamic)
if eventType = "Impression"
...
else if eventType = "FirstQuartile"
...
else if eventType = "Complete"
...
end if
end sub
Has anyone encountered this, I'm not getting any events for "% of video ad rendered". It looks like the eventType in those cases comes as Invalid
Btw, I do get PodStart/PodComplete events only these don't get triggered
I'm talking about these: https://sdkdocs.roku.com/display/sdkdoc/Integrating+the+Roku+Advertising+Framework#IntegratingtheRokuAdvertisingFramework-Tracking
Any ideas what's going on ?
1 REPLY 1
NB_
Roku Guru
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2017
01:20 PM
Re: Roku_Ads
See
"setTrackingCallback()" wrote:[...] Generally, if ctx.eventType is not set, then ctx.time should be set and indicates ad render progress [...]