42 lines
842 B
Text
42 lines
842 B
Text
|
POST http://localhost:8000/
|
||
|
Content-Type: application/json
|
||
|
|
||
|
{
|
||
|
"jsonrpc": "2.0",
|
||
|
"method": "multiply",
|
||
|
"params": {
|
||
|
"a": 2,
|
||
|
"b": 3
|
||
|
},
|
||
|
"id": 1
|
||
|
}
|
||
|
|
||
|
###
|
||
|
|
||
|
POST http://localhost:8000/
|
||
|
Content-Type: application/json
|
||
|
|
||
|
{
|
||
|
"jsonrpc": "2.0",
|
||
|
"method": "divide",
|
||
|
"params": {
|
||
|
"a": 10,
|
||
|
"b": 3
|
||
|
},
|
||
|
"id": 2
|
||
|
}
|
||
|
|
||
|
###
|
||
|
|
||
|
POST http://localhost:8000/
|
||
|
Content-Type: application/json
|
||
|
|
||
|
[
|
||
|
{ "jsonrpc": "2.0", "method": "multiply", "params": { "a": 2, "b": 3 }, "id": 10 },
|
||
|
{"jsonrpc": "2.0", "method": "sum", "params": [1,2,4], "id": "1"},
|
||
|
{"jsonrpc": "2.0", "method": "notify_hello", "params": [7]},
|
||
|
{"jsonrpc": "2.0", "method": "subtract", "params": [42,23], "id": "2"},
|
||
|
{"foo": "boo"},
|
||
|
{"jsonrpc": "2.0", "method": "foo.get", "params": {"name": "myself"}, "id": "5"},
|
||
|
{"jsonrpc": "2.0", "method": "get_data", "id": "9"}
|
||
|
]
|