1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
#!/usr/bin/env bash
. /usr/share/libubox/jshn.sh
json_load "$(ubus call session create)"
json_get_var sid ubus_rpc_session
json_init
json_add_string ubus_rpc_session "$sid"
json_add_array "objects"
json_add_array ""
json_add_string "" "session"
json_add_string "" "list"
json_close_array
json_close_array
ubus call session grant "$(json_dump)"
echo "Session: $sid"
echo "Request 1"
wget -q -O- \
--post-data='{
"jsonrpc": "2.0",
"method" : "call",
"params" : [
"'$sid'",
"session",
"test",
{},
]
}' "http://localhost:8080/ubus"
echo "Request 2"
wget -q -O- \
--post-data='[
{
"jsonrpc": "2.0",
"method" : "call",
"params" : [
"'$sid'",
"session",
"list",
{},
]
},
{
"jsonrpc": "2.0",
"method" : "call",
"params" : [
"'$sid'",
"session",
"test",
{},
]
},
]' "http://localhost:8080/ubus"
|