-
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
RealTimeData and video caching #10106
Comments
Caching is done before Are you looking to add impression trackers? this might be related: #9085 |
Indeed, I try to add impressions tracker. It works fine for outstream but not for instream because of caching. If that's not doable using rtdModule, I guess it could be doable by updating example of the new cache config params :
This would be used at the beggining of
If I submit such a PR, is that any chances to be accepted ? |
Hi @dgirardi sorry to insist, but do you think this kind of PR would have a change to be accepted ? |
@matthieularere-msq yes, but I'm not sure it would do what you're looking for - which I understand to be "I need my RTD module to modify VAST bids before they're cached". The But the general idea of letting interested parties add impression trackers does make sense; I suggest replacing the
I am not that familiar with VAST - the above is assuming that imp trackers are not the only type of tracker we'll want to eventually support. Also, in addition to (or instead of) Lines 586 to 598 in eb18f80
|
actually, I'm not sure my last point makes sense - if there's no cache, can we wrap a vast URL? we could try packaging the wrapper in a data url but I don't know if that has limitations. |
@dgirardi Prebid.js/src/adapters/bidderFactory.js Lines 310 to 320 in 22b9c70
but if it's too early in the process, this could be done in the tryAddVideoBid func from src/auction.js too I guess.
I agree that this should be doable regardless of cache : cache is the reason why it's not working with my previous approach inside rtdModule, but I am looking for it to work with or without cache. In case there is no vastXml but only vastUrl, I could add the same logic than in my rtdModule - concatenate it to vastImpUrl : Prebid.js/modules/oxxionRtdProvider.js Lines 80 to 84 in 22b9c70
However this could be a potential issue if too many of them a concatenated one after the others, so I guess if I add such a thing I would need to make sure url length remains lower than 2048 ? If this makes sense for you I can work on it. |
finished in #10191 |
Type of issue
Question
Description
I am trying to add informations in video creatives using a realtimedata module and I am fighting with the video caching that's setup on the publisher side. I wonder when a bid response is send to the cache url ? Is it done after rtdmodule onBidResponseEvent has cleared or before ? Based on the schema at https://docs.prebid.org/prebid-video/video-overview.html#instream-video I would guess that it's done after but I am unsure. Could you please confirm me the process flows ?
Thanks
The text was updated successfully, but these errors were encountered: