Skip to content

Latest commit

 

History

History
54 lines (44 loc) · 3.06 KB

curl.md

File metadata and controls

54 lines (44 loc) · 3.06 KB

Bookmarks tagged [curl]

https://www.youtube.com/watch?v=x3MvZ8DFrpE

Slides

Create HTTP mocks with WireMock’s REST API from any language for deterministic testing a...


https://www.codepedia.org/ama/how-to-test-a-rest-api-from-command-line-with-curl/

This post presents examples of making CRUD HTTP calls against a backend REST API. The API chosen supports www.bookmarks.dev


https://stedolan.github.io/jq/

jq is a lightweight and flexible command-line JSON processor.


https://httpie.org/

HTTPie—aitch-tee-tee-pie—is a command line HTTP client with an intuitive UI, JSON support, syntax highlighting, wget-like downloads, plugins, and more

Docs


https://stackoverflow.com/questions/800805/how-do-i-make-curl-ignore-the-proxy

If your curl is at least version 7.19.4, you could just use the --noproxy flag.


https://askubuntu.com/questions/347384/curl-5-couldnt-resolve-proxy-hproxy-iitm-ac-in

export http_proxy="";
export https_proxy="";
export ftp_proxy="";