Difference between revisions of "RESTful and SOAP calls"

From Ever changing code
Jump to navigation Jump to search
Line 27: Line 27:
http-prompt http://localhost:3000
http-prompt http://localhost:3000
http-prompt localhost:3000/api --auth user:pass username=somebody
http-prompt localhost:3000/api --auth user:pass username=somebody
</source>
[https://httpie.org/run HTTPie] online tool
<source lang=bash>
sudo apt-get install httpie
</source>
</source>


Line 32: Line 38:
*[http://http-prompt.com/ http-prompt.com]
*[http://http-prompt.com/ http-prompt.com]
*[https://www.tecmint.com/http-prompt-command-line-http-client/ http-prompt-command-line-http-client]
*[https://www.tecmint.com/http-prompt-command-line-http-client/ http-prompt-command-line-http-client]
*[https://github.com/jakubroztocil/httpie HTTPie: a CLI, cURL-like tool for humans]
*[https://github.com/jakubroztocil/httpie HTTPie: a CLI, cURL-like tool for humans] Github


= References =
= References =

Revision as of 14:42, 27 May 2019

Use curl to test RESTful API

curl --insecure -X GET \
 --header "Accept: application/json" \
 --header "Authorization: Bearer geasrExampleTokengwsdvb" \
 "https://host1.aws.example.com/ApiBaseLocation/v1/ApiName/Value"

Options explained

  • --insecure disables ssl checks like the certificate chain check, etc.
  • -X, --request <command> it defaults to GET commands, check HTTP1.1 specification for more
  • -H, --header <header> (HTTP) Extra header to include in the request when sending HTTP to a server

Use Chrome addon Postman

Run Chrome in ssl disable verification mode in case you hit CN url mismatch in SSL certificate

"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --ignore-certificate-errors

HTTP Prompt – An Interactive Command Line HTTP Client

Install

pip install http-prompt #requires root and sudo is not advised
pip install --user http-prompt


Use

http-prompt http://localhost:3000
http-prompt localhost:3000/api --auth user:pass username=somebody


HTTPie online tool

sudo apt-get install httpie

Resources

References