"RokuPatrick" wrote:"koshermetal" wrote:
I'm trying to do the same thing. I would like to have a banner within our channel that provides a call to action to listen to our station using the TuneIn Radio Channel, and launched the Channel Screen from the Channel Store once selected (it's ok if it just loads the Channel Store only if the user doesn't already have TuneIn Radio installed.)
I know I have to get the content ID of the TuneIn channel, but will the example code above work for this?
Also, not sure if TuneIn has a way to send launch parameters so we can directly launch the station from our channel...but that would be cool also.
Anyone feel like helping us out?
I don;t think TuneIn yet supports the deep linking that would be required to launch the channel and start with a specific piece of content.
"SolveLLC" wrote:
Here is the code I'm attempting to use.
Function BannerInstall() As String
ip = "127.0.0.1"
xfer = CreateObject("roURLTransfer")
ECPUrl= "http://127.0.0.1:8060/launch/11?contentID=1504"
xfer.SetURL(ECPUrl)
result = xfer.PostFromString("")
End Function
Sub RunUserInterface()
screenFacade = CreateObject("roPosterScreen")
screenFacade.showMessage("")
screenFacade.show()
port = CreateObject("roMessagePort")
screenFacade.SetMessagePort(port)
di = CreateObject("roDeviceInfo")
ipaddrs = di.GetIPAddrs()
if ipaddrs.eth0 <> invalid then ipaddr = ipaddrs.eth0
if ipaddrs.eth1 <> invalid then ipaddr = ipaddrs.eth1
print "ipaddr: ";ipaddr
sleep(1000)
url = "http://"+ipaddr+":8060/launch/11?contentID=12"
xfer = CreateObject("roUrlTransfer")
xfer.SetUrl(url)
xfer.PostFromString("")
while true
msg = wait(0,port)
end while
End Su