Forum Discussion
6 Replies
- compercVisitorNo it doesn't. Deep linking is more about the value of args
- newchannelRoku GuruOkay, thank you for helping.
I have this for my deep linking code. I believe it gets added to main.brs Does it matter where in the main.brs it gets placed? That has always confused me is how to know where to add things. I've been reading about deep linking and hopefully I can get it working. I'll have in the XML contentID and mediaType and only using the movie mediatype.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 - speechlesRoku Guru
Else
'Print an error message. Do not fail silently
print "Unknown Media Type = ", mainArgs.mediaType
That part is wrong.
Else
'do nothing if the user just starts the app with no args (or unknown args)
'hit the homescreen, a splash screen with a wait timer for input..
GoToHomescreen()
end if
that is more like that you should be doing. - newchannelRoku Guru
"speechles" wrote:
Else
'Print an error message. Do not fail silently
print "Unknown Media Type = ", mainArgs.mediaType
That part is wrong.
Else
'do nothing if the user just starts the app with no args (or unknown args)
'hit the homescreen, a splash screen with a wait timer for input..
GoToHomescreen()
end if
that is more like that you should be doing.
Thank you. - newchannelRoku GuruDo you know if deep linking is required for a live streaming channel?
- newchannelRoku GuruUsing the video-player-channel-master on the following page
https://github.com/rokudev/videoplayer-channel
Where in the code do I add: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
'do nothing if the user just starts the app with no args (or unknown args)
'hit the homescreen, a splash screen with a wait timer for input..
GoToHomescreen()
end if
End If
End Function
Thanks for any and all advice.