Player is not sending cookies if we attachSource
Created by: kamranhameedpl
Hi,
I am implementing dash js in our web application. The content is protected with cookies. When i attach the source to the player and it goes to request the mpd from server it is not including cookies in the request. here is my code how can i tell the player to take cookies with it when it requests the mpd from server. var newSource = "url to mpd" var videoPlayer = document.getElementById("videoPlayer"); var context = new Dash.di.DashContext(); var player = new MediaPlayer(context); player.startup(); player.attachView(videoPlayer); player.attachSource(newSource)