Roku Developer Program

Join our online forum to talk to Roku developers and fellow channel creators. Ask questions, share tips with the community, and find helpful resources.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
hogie76
Visitor

Headers are stripped on play request

Hello,

I am currently running into an issue where my headers are being stripped when requesting playback of the video node.  The server requires these headers to be able to playback the content. 



device=CreateObject("roDeviceInfo")
hvideo = CreateObject("roHttpAgent")
hvideoheaders = {
"Device": device.GetDeviceUniqueId(),
"DeviceProf": device.GetModelDisplayName()+"("+device.GetModel()+";"+device.GetVersion()+";Roku;roku)",
"Version": "C4.9.9_S0",
"x-roku-reserved-dev-id": "",
}
hvideo.SetHeaders(hvideoheaders)

'set videoContent Parameters

videoContent = createObject("RoSGNode", "ContentNode")
videoContent.url = streamUrl
videoContent.Title = m.top.item.Title
videoContent.StreamFormat = "hls"
videoContent.SubtitleConfig = subtitle_config
videoContent.HttpSendClientCertificates = true


'Set Video
m.video = m.top.findNode("musicvideos")
m.video.SetConnectionTimeout(30)
'm.video.notificationInterval = 30
m.video.observeField("state", "stateChanged")
m.video.observeField("streamInfo", "streamInfoChanged")
m.video.observeField("streamingSegment", "streamingSegmentChanged") 
m.video.content = videoContent
m.video.setHttpAgent(hvideo)
m.video.control = "play"




The only header that comes across is x-roku-reserved-dev-id when using a differnt HTTP Agent. 

If i use the video nodes content metadata for the headers, all the headers are present EXCEPT x-roku-reserved-dev-id which fails the webserver access rules. This is how I have tried to set these:


headers = []
headers.push("x-roku-reserved-dev-id:")
headers.push("Device:" + device.GetDeviceUniqueId())
headers.push("DeviceProf:" + device.GetModelDisplayName()+"("+device.GetModel()+";"+device.GetVersion()+";Roku;roku)")
headers.push("Version:C4.9.9_S0")

videoContent.HttpHeaders = headers



I have tried setting just the content nodes without the x-roku-reserved-dev-id and the HTTPAgent with the x-roku-reserved-dev-id however it is the same result... 

Any thoughts? 
0 Kudos
3 REPLIES 3
RokuKevin
Visitor

Re: Headers are stripped on play request

This is a firmware bug in v7.6.  We have fixed it in v7.7 firmware.  You can test with v7.7 firmware using our beta program:
https://rokutestingportal.centercode.co ... er2017beta
0 Kudos
serpox
Visitor

Re: Headers are stripped on play request

Hi Kevin,

I have a similar issue with audio icecast streams where audio stop working after upgrading my roku firmware to v7.6. Would you please take a look at my post and tell me if the issue is reated?

https://forums.roku.com/viewtopic.php?f=34&t=103696

Thank you.
0 Kudos
xwilly
Reel Rookie

Re: Headers are stripped on play request

Hi, I am using the VideoListExample file and I need to add a Http Header when I call the URLs of the streams stored in the XML.

The Http Header is the user agent and will be the same for each stream.

Can someone help me with the right piece of code to add?

Thanks

0 Kudos