Profound connecting is utilized for propelling general society channel, all inclusive inquiry and specifically open to a specific video in an open channel.
As per new Roku TV App Development advancement rules, every single open channel are presently fundamental to actualize profound connecting to pass confirmation.
Execution of Deep connecting in Roku
Execution of Deep connecting in Roku
Stage 1: Modify the primary strategy, by including a parameter for tolerating Deep connecting.
- Function Main (mainArgs as Dynamic) as Void
- End Function
Stage 2: Now, check if the Roku channel is profound connected or not. On the off chance that mainArgs. ContentID and mainArgs. MediaType both are not invalid then it is profound connected. On the off chance that any of them are invalid then it is an ordinary channel.
- Function Main (mainArgs as Dynamic) as Void
- If (mainArgs.ContentId <> invalid) and (mainArgs.MediaType <> invalid)
- print "Channel is deep linked"
- End If
- End Function
Stage 3: Implement the following stage according to the Media Type and ContentId for a specific channel. Roku has media composes, for example, motion picture, scene, short-shape, uncommon, live and season.
- Function Main (mainArgs as Dynamic) as Void
- If (mainArgs.ContentId <> invalid) and (mainArgs.MediaType <> invalid)
- If (mainArgs.mediaType = “movie” )
- print "Play Movie ", mainArgs.ContentId
- Else If (mainArgs.mediaType = “live” )
- print "Play Live ", mainArgs.ContentId
- Else If (mainArgs.mediaType = “episode” )
- print "Play Episode ", mainArgs.ContentId
- Else If (mainArgs.mediaType = "short-form" or mainArgs.mediaType = "special" or mainArgs.mediaType = "season" )
- print "Play ",mainArgs.mediaType, " ", mainArgs.ContentId
- Else
- 'Print an error message. Do not fail silently
- print "Unknown Media Type = ", mainArgs.mediaType
- End If
- End If
- End Function
Testing of Deep connecting in Roku
Strategy 1: curl -d ” ” ‘http://ip-address:8060/launch/dev?contentID=123456&MediaType=live’
Strategy 2: Deep connecting analyzer application
Thanks
Comments
Post a Comment