
SECHIN_SUNNY
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-16-2017
11:33 PM
Youtube api implementation in roku
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 .
Can anyone please help me out in solving this requirement .
Thanks
Regards
Sechin Sunny
Regards
Sechin Sunny
3 REPLIES 3

marcelo_cabral
Roku Guru
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-17-2017
08:56 AM
Re: Youtube api implementation in roku
"SECHIN SUNNY" wrote:
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 .
As far as I know Google does not allow on YouTube License Agreement anyone to play videos in 3rd party players, you can use their API to browse the content, but you will need to call YouTube channel using deep link feature.

SECHIN_SUNNY
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-17-2017
10:09 AM
Re: Youtube api implementation in roku
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.
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.
Thanks
Regards
Sechin Sunny
Regards
Sechin Sunny
Alexanderrk
Reel Rookie
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-17-2017
11:00 AM
Re: Youtube api implementation in roku
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.
Good luck!
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!