-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Question] Click tracking when using Prebid without the Ad Server #6225
Comments
I forgot to mention when I click on the creative I can see a |
I don't see any problem with your current setup and approach (though a bit unusual). Your creative template also looks to be rendering in the correct format. As long as you see a |
@Fawke Thank you for confirming this |
Finally I got the answer to my doubts. Xandr, before sending the creatives to Prebid, do an auction with their own internal DSP and some other external DSP. And only the creatives that comes from their internal DSP will be tracked on their dashbord panel, others don't. That's it. |
Hi, my scenario is best described here. In short I have created an adapter only
native
for my SSP and a custom Prebid Module to run Prebid without an Ad Server. On page load, Prebid load two adapter (my own adapter and appnexus) + the custom Module.The custom module listening for the
AUCTION_END
event, so when responses comes from SSPs, the event is fired and there I was able to select the winning creative for each placement withgetHighestCpmBids(adUnit.code)
. After that, creatives were printed with a custom function and everything seems to work fine.Problems comes with click tracking on AppNexus side. To implement tracking, I have tried to emulate https://github.com/prebid/prebid-universal-creative/blob/master/src/nativeRenderManager.js
So in my custom Module when the highestCpmBids come from AppNexus I run the following script to track impressions:
While to track clicks I have added to all the creative links the class
pb-click
, the attributepbadid=adId
and aclick listener
in the custom function that render the creative:That's an example of the html
At the end
Impressions
andViewable Impressions
are quite close to those on our systems with a difference of +-5%, which is good to me. WhileClicks
are far lower than those monitored by us, 1 on Xandr against 120 on our system.I know that this issue may not be directly related to Prebid, but I want to know if I've done everything I can do to track clicks or if something is missing.
Thanks in Advance
The text was updated successfully, but these errors were encountered: