我进行搜索,发现的不仅仅是打开我的频道中的youtube应用 但我想从我的roku频道中打开“ Myname youtube频道”链接 这里是link,用于通过自己的渠道打开其他渠道。
下面的是仅打开app的代码。所以我需要类似元数据的内容传递到以下代码中,因此youtube应该直接打开我的youtube频道而不是youtube主页。 预先感谢。
create roDeviceInfo, call GetIPAddrs() to determine IP of the box
create roUrlTransfer, call setURL("http://"+IP+":8060/launch/33739"),
then say PostFromString()
答案 0 :(得分:0)
您可以尝试通过如下所示的启动方式传递一些参数
LA R5,1
MVC CWORD+0(R5),WORD
答案 1 :(得分:0)
appID = 837
ipAddrs = CreateObject("roDeviceInfo").GetIPAddrs()
if ipAddrs.eth0 <> invalid
url = "http://"+ ipAddrs.eth0++":8060/launch/"+appID
else
url = "http://"+ ipAddrs.eth1+":8060/launch/"+appID
end if
request = CreateObject("roUrlTransfer")
request.SetUrl(url)
request.AsyncPostFromString(url)
urlEvent = request.head()