Hi everyone!
Would you recommend any particular tool to send test request to the TS API?
I have heard of Postman for Chrome, is it any good?
Cheers!
Yes, postman works quite well, but if you want to work on the console I would recommend using curl, It's reasonably simple to use and you can write batch scripts or shell scripts of the commands you wish to test frequently.
It supports HTTPS as well as HTTP and supports all HTTP methods.
For example,
curl -i -H "otagkey:yourid" -X GET http://webservice/gateway/v1/logs/catalina.2?otagtoken=yourotagtoken
Would return the catalina log on a AppWorks gateway installation assuming you're an administrator.
http://curl.haxx.se/