diff options
author | OpenGnSys Support Team <soporte-og@soleta.eu> | 2019-05-25 01:32:25 +0200 |
---|---|---|
committer | OpenGnSys Support Team <soporte-og@soleta.eu> | 2019-05-27 13:03:05 +0200 |
commit | 7ab5f0cbfb827ad18af33de04ee2115d3208b298 (patch) | |
tree | a641099d382df1cd2251ae450a520b7e75feebfe /tests/run-tests.sh | |
parent | c6020f2ad186954d6c083d000f282f58b44017f1 (diff) |
#915 add POST session command to REST API in ogAdmServer
Start a session on client (through POST method):
curl -X POST http://127.0.0.1:8888/session -d @session.json
Request
POST /session
{"clients": [ "192.168.2.1" ] }
Reply:
200 OK
Diffstat (limited to 'tests/run-tests.sh')
-rwxr-xr-x | tests/run-tests.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/run-tests.sh b/tests/run-tests.sh index b5239d5..27c7bc6 100755 --- a/tests/run-tests.sh +++ b/tests/run-tests.sh @@ -3,3 +3,4 @@ curl -X GET http://127.0.0.1:8888/clients curl -X POST http://127.0.0.1:8888/wol -d @wol.json curl -X POST http://127.0.0.1:8888/shell/run -d @post_shell_run.json curl -X POST http://127.0.0.1:8888/shell/output -d @post_shell_output.json +curl -X POST http://127.0.0.1:8888/session -d @session.json |