Help opening Netflix app to a specific user using a JSON command
#1
I'm trying to use JSON commands from my integration controller to control Kodi. I have most everything working. I am stumped on Netflix though.

I have a command that will open the app which is:
Code:
{"jsonrpc":"2.0","method":"Addons.ExecuteAddon","params":{"addonid":"plugin.video.netflix","params":{"command":"activate"}},"id":1}

In AeonNox, it will open directly to my user account without asking who I am which is ideal. So I pulled the code I could find from Aeon and came up with this:
Code:
{"jsonrpc":"2.0","method":"Addons.ExecuteAddon","params":{"addonid":"plugin.video.netflix/directory/home/?switch_profile_guid=MYNETFLIXUSERIDFROMAEON","params":{"command":"activate"}},"id":1}
Unfortunately this does nothing.

I don't have a deep understanding of JSON, so if someone can help correct my syntax, that would be awesome.
The XBMC team, plug-in devs, skinners, etc. do this for us for FREE in their spare time because they want to. Think about that for a second before you start bitching...
Reply
#2
You probably have to use the "additional properties" which are mentioned here:

https://kodi.wiki/view/JSON-RPC_API/v10#...ecuteAddon

Expand the code-section.
Reply

Logout Mark Read Team Forum Stats Members Help
Help opening Netflix app to a specific user using a JSON command0