Working JSON RPC API Examples
#33
I had a heck of a time getting anything to work. I hope this helps others.

To get the list of active players:

Code:
curl --user foo:bar --header 'Content-Type: application/json' --data-binary '{ "id": 1, "jsonrpc": "2.0", "method": "Player.GetActivePlayers" }' 'http://192.168.1.127/jsonrpc'

Response can be something like:

Code:
{"id":1,"jsonrpc":"2.0","result":[{"playerid":2,"type":"picture"}]}

To stop player #2:

Code:
curl --user foo:bar --header 'Content-Type: application/json' --data-binary '{ "id": 1, "jsonrpc": "2.0", "method": "Player.Stop", "params": { "playerid": 2 } }' 'http://192.168.1.127/jsonrpc'

Response is something like:

Code:
{"id":1,"jsonrpc":"2.0","result":"OK"}

The playerid is what was returned for playerid in the GetActivePlayers.

To start a slideshow:

Code:
curl --user foo:bar --header 'Content-Type: application/json' --data-binary '{ "id": 1, "jsonrpc": "2.0", "method": "Player.Open", "params": {"item": { "path": "/media/PERRY/Picks" } } }' 'http://192.168.1.127/jsonrpc'

Response is:

Code:
{"id":1,"jsonrpc":"2.0","result":"OK"}

In my case, PERRY is the name of a USB stick mounted on a Raspberry Pi and Picks is a directory of JPGs and Videos.

It seems you do not need the --globoff after all when using the --data-binary method.
You need to set --header or you get back HTTP/1.1 415 Unsupported Media Type.
You must have the id if you want to get a response back but you don't if you want to just give a command and assume it works.
The value for "id" is an integer and is used to match up the response that comes back.
The jsonrpc 2.0 is needed or you get an "Invalid Request" back.

My only question left is when can / should you use "GET" instead of "Post" ?

Thank you,
Perry
Reply


Messages In This Thread
Working JSON RPC API Examples - by Pghpunkid - 2013-03-01, 21:23
RE: Working JSON RPC API Examples - by ndxtg - 2013-03-16, 01:00
RE: Working JSON RPC API Examples - by darwin - 2013-05-25, 03:51
RE: Working JSON RPC API Examples - by Tolriq - 2013-04-29, 20:19
RE: Working JSON RPC API Examples - by jonib - 2013-05-27, 14:33
RE: Working JSON RPC API Examples - by roscoe - 2013-07-02, 13:07
RE: Working JSON RPC API Examples - by yallah - 2013-10-31, 14:51
RE: Working JSON RPC API Examples - by yallah - 2013-10-31, 17:42
RE: Working JSON RPC API Examples - by yallah - 2013-11-01, 00:06
RE: Working JSON RPC API Examples - by yallah - 2013-11-01, 00:28
RE: Working JSON RPC API Examples - by yallah - 2013-11-01, 00:38
RE: Working JSON RPC API Examples - by pedz - 2014-09-14, 20:37
RE: Working JSON RPC API Examples - by gb160 - 2015-02-18, 15:07
RE: Working JSON RPC API Examples - by healie - 2014-12-22, 21:31
RE: Working JSON RPC API Examples - by tdhz77 - 2015-05-16, 03:40
RE: Working JSON RPC API Examples - by axa88 - 2015-06-04, 03:56
RE: Working JSON RPC API Examples - by axa88 - 2015-07-16, 03:18
RE: Working JSON RPC API Examples - by axa88 - 2015-07-27, 03:13
RE: Working JSON RPC API Examples - by axa88 - 2015-07-27, 09:59
RE: Working JSON RPC API Examples - by axa88 - 2015-09-07, 07:41
RE: Working JSON RPC API Examples - by axa88 - 2015-10-16, 20:56
RE: Working JSON RPC API Examples - by LeeJS - 2015-10-09, 23:48
RE: Working JSON RPC API Examples - by wollk - 2015-10-23, 22:19
RE: Working JSON RPC API Examples - by atailo - 2015-11-02, 04:42
RE: Working JSON RPC API Examples - by Razze - 2015-11-02, 16:00
RE: Working JSON RPC API Examples - by atailo - 2015-11-02, 18:55
RE: Working JSON RPC API Examples - by atailo - 2015-11-03, 23:59
RE: Working JSON RPC API Examples - by Ouchie - 2016-03-05, 21:25
RE: Working JSON RPC API Examples - by _BJ1 - 2015-11-29, 20:55
RE: Working JSON RPC API Examples - by Razze - 2015-11-29, 23:32
RE: Working JSON RPC API Examples - by _BJ1 - 2015-11-30, 21:07
RE: Working JSON RPC API Examples - by Tolriq - 2015-11-30, 21:31
RE: Working JSON RPC API Examples - by Tolriq - 2016-01-27, 21:17
RE: Working JSON RPC API Examples - by atailo - 2016-02-23, 15:10
RE: Working JSON RPC API Examples - by B3rt - 2016-03-07, 04:28
RE: Working JSON RPC API Examples - by Razze - 2016-03-07, 14:48
RE: Working JSON RPC API Examples - by B3rt - 2016-03-07, 14:54
RE: Working JSON RPC API Examples - by curti - 2016-03-07, 23:21
RE: Working JSON RPC API Examples - by juju37 - 2016-03-18, 11:34
RE: Working JSON RPC API Examples - by Tolriq - 2016-03-18, 11:48
RE: Working JSON RPC API Examples - by juju37 - 2016-03-18, 12:22
RE: Working JSON RPC API Examples - by atailo - 2016-04-29, 19:21
RE: Working JSON RPC API Examples - by agb2 - 2018-03-26, 17:11
RE: Working JSON RPC API Examples - by agb2 - 2018-04-04, 11:37
RE: Working JSON RPC API Examples - by rmg9 - 2016-06-27, 14:48
RE: Working JSON RPC API Examples - by SDG72 - 2016-09-19, 19:48
RE: Working JSON RPC API Examples - by SDG72 - 2016-09-25, 03:05
RE: Working JSON RPC API Examples - by jonib - 2017-01-02, 01:14
RE: Working JSON RPC API Examples - by jonib - 2017-01-02, 04:35
RE: Working JSON RPC API Examples - by jez500 - 2017-01-20, 09:46
RE: Working JSON RPC API Examples - by B3rt - 2017-01-29, 23:06
RE: Working JSON RPC API Examples - by Wimpie - 2017-01-30, 03:03
RE: Working JSON RPC API Examples - by B3rt - 2017-01-30, 11:22
RE: Working JSON RPC API Examples - by ronie - 2017-01-30, 03:19
RE: Working JSON RPC API Examples - by ronie - 2017-01-30, 11:34
RE: Working JSON RPC API Examples - by B3rt - 2017-01-30, 11:48
RE: Working JSON RPC API Examples - by B3rt - 2017-01-30, 15:54
RE: Working JSON RPC API Examples - by isdito - 2017-03-10, 02:00
RE: Working JSON RPC API Examples - by ednt - 2017-05-22, 10:50
RE: Working JSON RPC API Examples - by ednt - 2017-05-22, 11:33
RE: Working JSON RPC API Examples - by ednt - 2017-05-22, 16:52
RE: Working JSON RPC API Examples - by petou - 2017-08-29, 16:23
RE: Working JSON RPC API Examples - by petou - 2017-08-29, 16:28
RE: Working JSON RPC API Examples - by Razze - 2017-08-29, 18:51
RE: Working JSON RPC API Examples - by MKANET - 2017-09-09, 10:11
RE: Working JSON RPC API Examples - by petou - 2017-09-09, 13:06
RE: Working JSON RPC API Examples - by MKANET - 2017-09-10, 02:23
RE: Working JSON RPC API Examples - by petou - 2017-09-10, 03:06
RE: Working JSON RPC API Examples - by MKANET - 2018-07-03, 18:58
RE: Working JSON RPC API Examples - by MKANET - 2018-09-23, 21:23
RE: Working JSON RPC API Examples - by MKANET - 2019-12-18, 18:06
RE: Working JSON RPC API Examples - by nissse - 2018-11-23, 17:21
RE: Working JSON RPC API Examples - by HTGeek - 2019-04-06, 00:48
RE: Working JSON RPC API Examples - by lysyi - 2019-08-13, 06:36
RE: Working JSON RPC API Examples - by HTGeek - 2019-08-13, 21:31
RE: Working JSON RPC API Examples - by lysyi - 2019-08-13, 22:00
RE: Working JSON RPC API Examples - by HTGeek - 2019-08-13, 22:39
RE: Working JSON RPC API Examples - by IT007 - 2019-11-15, 17:02
RE: Working JSON RPC API Examples - by MKANET - 2019-11-16, 00:52
RE: Working JSON RPC API Examples - by IT007 - 2019-11-16, 08:00
RE: Working JSON RPC API Examples - by MKANET - 2019-11-17, 03:15
RE: Working JSON RPC API Examples - by madkat - 2020-05-22, 05:20
RE: Working JSON RPC API Examples - by madkat - 2020-05-22, 05:25
RE: Working JSON RPC API Examples - by madkat - 2020-05-22, 14:24
RE: Working JSON RPC API Examples - by madkat - 2020-05-22, 21:42
RE: Working JSON RPC API Examples - by HTGeek - 2020-07-25, 18:06
RE: Working JSON RPC API Examples - by mpg732 - 2020-08-02, 06:33
RE: Working JSON RPC API Examples - by Klojum - 2020-09-22, 18:45
RE: Working JSON RPC API Examples - by _BJ1 - 2020-10-15, 09:51
RE: Working JSON RPC API Examples - by HTGeek - 2020-10-15, 21:21
RE: Working JSON RPC API Examples - by _BJ1 - 2020-10-15, 22:18
RE: Working JSON RPC API Examples - by konrul - 2021-11-11, 22:18
RE: Working JSON RPC API Examples - by konrul - 2021-11-11, 22:22
RE: Working JSON RPC API Examples - by HTGeek - 2021-11-12, 01:01
RE: Working JSON RPC API Examples - by konrul - 2021-11-12, 15:45
RE: Working JSON RPC API Examples - by Klojum - 2021-11-11, 22:28
RE: Working JSON RPC API Examples - by DaVu - 2022-02-08, 23:13
RE: Working JSON RPC API Examples - by HTGeek - 2022-10-12, 00:53
RE: Working JSON RPC API Examples - by HTGeek - 2022-10-12, 01:25
RE: Working JSON RPC API Examples - by HTGeek - 2022-10-16, 18:22
RE: Working JSON RPC API Examples - by houser - 2024-02-14, 12:11
Logout Mark Read Team Forum Stats Members Help
Working JSON RPC API Examples0