SSL on HLS(m3u8) not playing in roku

Hello,
I’m having a problem playing ssl hls file in roku
i have added the SetCertificatesFile but its not working in roku

i can play http not https

can someone help me out

anyone ?

Here is my source code

  port = CreateObject("roMessagePort")
  screen = CreateObject("roVideoScreen")
  screen.SetMessagePort(port)
  screen.SetPositionNotificationPeriod(1)
  screen.SetCertificatesFile("common:/certs/ca-bundle.crt")
  screen.SetCertificatesDepth(2)
  screen.InitClientCertificates()
  screen.SetContent(content)
  while true
  screen.Show()

Remove the calls to SetCertificatesDepth() and InitClientCertificates().

And what’s that while true statement doing before your call to screen.show()?

If it still doesn’t work, then print out the roVideoScreenEvent values. You could also use roSystemLog events to get more information, and check your server logs.