curl.md

July 15, 2021 · View on GitHub

Bookmarks tagged [curl]

www.codever.land/bookmarks/t/curl

Advanced HTTP Mocking with WireMock at DevFest DC - 43min

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

Slides

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


How to test a REST api from command line with curl – CodepediaOrg

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


jq home page

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

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


HTTPie – command line HTTP client home page

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


How do I make curl ignore the proxy? - Stack Overflow

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.


configuration - curl: (5) Couldn't resolve proxy 'hproxy.iitm.ac.in' - Ask Ubuntu

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

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