You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Impression event seatbid.bid.ext.prebid.events.imp is not notified when adm doesn't have eventtrackers. It must be notified even if there are no eventtrackers.
ImpressionTracker is created in line 301 (PrebidNativeAd.java) only if there is at least one impression tracker (array imp_trackers).
if (imp_trackers != null) {
...
}
If there are no impression trackers we need to create ImpressionTracker with impEvent URL to call the notifyImpressionEvent() when an ad is on display.
The text was updated successfully, but these errors were encountered:
Impression event
seatbid.bid.ext.prebid.events.imp
is not notified whenadm
doesn't haveeventtrackers
. It must be notified even if there are noeventtrackers
.ImpressionTracker
is created in line 301 (PrebidNativeAd.java) only if there is at least one impression tracker (arrayimp_trackers
).If there are no impression trackers we need to create
ImpressionTracker
withimpEvent
URL to call thenotifyImpressionEvent()
when an ad is on display.The text was updated successfully, but these errors were encountered: