jpkilman
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2017
03:33 PM
external control search with multiple providers
I have firmware version 7.5 on my roku and I am able to pass the search commands implemented in the latest firmware without a problem with one exception. When I use multiple providers or provider ids in a comma separated list as specified in the documentation I get error saying my command was invalid. I have tried using a couple different methods for sending the command including invoking the web request from powershell in windows and using a chrome plugin. I'm new to programming but working on an Amazon Alexa skill for roku control. Right now my skill has to use the arrow commands to get to search, it would be nice to use this new search function built into the external control API. Has anyone been able to get this working?
Thanks
John
Thanks
John
3 REPLIES 3


Roku Employee
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2017
06:02 PM
Re: external control search with multiple providers
"jpkilman" wrote:
When I use multiple providers or provider ids in a comma separated list as specified in the documentation I get error saying my command was invalid.
Are you URL-encoding the ',' as %2C in the URL?
jpkilman
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2017
11:29 AM
Re: external control search with multiple providers
No I am not, like I said a bit new to this. I will give that a shot, thanks
EnTerr
Roku Guru
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2017
11:59 AM
Re: external control search with multiple providers
"Legally", commas are not required to be escaped in query strings.
RFC is a bit of morass on that and people sometimes mistakenly assume that everything that is "reserved character" has to be encoded everywhere, where in fact the mandate varies with the part of URI.
So, worth trying with %-encode, if in "practice" Roku code has erred on the side of recognizing only the unescaped unreserved chars.
PS. indeed, Roku is "illegally" picky:
@Roku* - how about just using "+"?
I.e. `&provider-id=12+13` - after all "+" is the short encoding for space (vs %20 long form). And channel# tend to be space-free :). And `+` makes the URL more humane
RFC is a bit of morass on that and people sometimes mistakenly assume that everything that is "reserved character" has to be encoded everywhere, where in fact the mandate varies with the part of URI.
So, worth trying with %-encode, if in "practice" Roku code has erred on the side of recognizing only the unescaped unreserved chars.
PS. indeed, Roku is "illegally" picky:
~ $ curl -d '' 'http://192.168.1.26:8060/search/browse?keyword=lego&provider-id=12' -v
...
< HTTP/1.1 200 OK
...
* Connection #0 to host 192.168.1.26 left intact
~ $ curl -d '' 'http://192.168.1.26:8060/search/browse?keyword=lego&provider-id=12,13' -v # appending ,13
...
< HTTP/1.1 400 Bad Request
...
* HTTP error before end of send, stop sending
* Closing connection 0
@Roku* - how about just using "+"?
I.e. `&provider-id=12+13` - after all "+" is the short encoding for space (vs %20 long form). And channel# tend to be space-free :). And `+` makes the URL more humane