Forum Replies Created
-
-

Hi Martin,
we purchased the pro support. I hope you can resolve our issue quickly.
Best regards

Hi Martin,
yes you’re right, the second solution would be very helpfull, but we need some solution sa soon as possible.
So I think I will try the first option in the meantime until you decide whether or not to implement the gdrp-Tag.Best regards

Hi again
is it maybe possible to construct the FV Player yourself?
For example is it possible to do something like this:<script type=”text/javascript”>
vid1 =fvplayer(“vid1″)
vid1.ima({
adTagUrl: vast_url,
disableAdControls: true
});
</script><video id=”vid1″ class=”video-js vjs-default-skin vjs-big-play-centered vjs-fluid” poster=”” preload=”auto” controls=”” >
<source src=”https://player.vimeo.com/external/12345″ type=”video/mp4″>
</video>Best regards

Hi,
thanks for the reply. The javascript we use to extract the constent-string is as follows:
const vast_url_cookies = document.cookie.split(“; “).find(row => row.startsWith(“euconsent-v2”));
const vast_url_consent = vast_url_cookies.split(“=”)[1];The name of the cookie is “euconsent-v2” and it looks something like this:
euconsent-v2=CPFnbqlPFnbqlAVACADEBaCsAP_AAH_AAAYgHhNf_X9VbWNjuX59YttkYIEX1tRvo-QjCg[…]AAAAAAAA
We only need the string after the “=” so we split it.
Best regards