I have a roku project coming up from a client , who wish to have youtube video’s playing on his channel . Can any one help me out on how to attach the url over roku brightscript and view in roku videoplayer .
Can anyone please help me out in solving this requirement .
Thank you so much .
Sir please can you tell me how to call the api of you tube in my clients channel and use it to call the you tube channel using deep linking , is there any sample.
You could use the External control guide
https://sdkdocs.roku.com/display/sdkdoc/External+Control+Guide
You can launch videos by sending a POST command to the Roku, eg.
conn = CreateObject("roUrlTransfer")
url = "http://localhost:8060/launch/837?contentID=VIDEOID"
conn.SetUrl(url)
conn.SetRequest("POST")
data = conn.GetToString()
Good luck!