[+] This API gives access to the scripting interface via HTTP.
[+] Issue commands as POST or GET with syntax like http://localhost:8080/api/setCameraUp?up=[1.,0.,0.]
[+] For HTTP parameters names, use the formal parameter names of the respective Java method, as defined in IScriptingInterface.
[+] Quick command reference list available with http://localhost:8080/api/help
[+] Detailed information on Java methods and their formal parameters: https://langurmonkey.github.io/gaiasky/javadoc/gaia/cu9/ari/gaiaorbit/script/IScriptingInterface.html
[+] For values, give booleans, ints, floats, doubles, strings as they are, give vectors comma-separated with square brackets around: true, 42, 3.1, 3.14, Superstring, [1,2,3], [Do,what,they,told,ya]
[+] Response with return data is in JSON format.The "success" key entry tells you about success/failure of the call, the "value" entry gives the return value.