Hello, I tried the same thing to load https image in Roku. Currently, I used the latest 9.3.0 software version.
sub init()
m.poster = m.top.findNode("testPoster")
m.poster.SetCertificatesFile("pkg:/certificates/cacert.crt")
m.poster.InitClientCertificates()
'm.top.SetCertificatesFile("common:/certs/ca-bundle.crt")
'm.top.InitClientCertificates()
'm.poster.SetCertificatesFile("common:/certs/ca-bundle.crt")
'm.poster.AddHeader("developer ID", "")
'm.poster.InitClientCertificates()
m.poster.uri="https://simultv.com:1400//nodeapi/Channels/file-1591699694712.jpg"
m.poster.failedBitmapUri="pkg:/images/splash_hd.jpg"
m.poster.observeField("loadStatus","OnLoadStatusChanged")
m.top.SetFocus(true)
End sub
function OnLoadStatusChanged()
?"m.poster.loadStatus : "m.poster.loadStatus
end function
Here, I checked with the other https Url. It's Working Fine. But I don't know why it's a problem with my https URL. My https Url Without adding any certificate, working fine for all other platforms like Android, IOS, Amazone Fire Stick, and also Google Chrome. Does anyone know what is the reason for not loading the https URL?