Forum Discussion
entrez
7 years agoNewbie
Are you using the "standard" deep linking command (which includes the command to launch the channel) like this:
Or are you using a curl command formatted for roInput? Like this (as found here😞
The former will always (re)launch the channel because it includes a command to launch it directly in the URI. The latter is the way to send input to a roInputEvent. As far as I know the deeplinking test tool only supports the launch commands.
curl -d '' '<roku IP>:8060/launch/dev?contentID=<UUID>&mediaType=movie'
Or are you using a curl command formatted for roInput? Like this (as found here😞
curl -d '' '<roku IP>:8060/input?my_event=My%20Test¶m2=100¶m3=200&action=start'
The former will always (re)launch the channel because it includes a command to launch it directly in the URI. The latter is the way to send input to a roInputEvent. As far as I know the deeplinking test tool only supports the launch commands.