🤪
Showing Chrome, but it's similar in other browsers.
- Brief mention:
- Network panel
Remember when we were working with APIs?
requests.get(url)
Visit http://127.0.0.1:5000/echo.
curl -I http://127.0.0.1:5000/echo
curl -X POST http://127.0.0.1:5000/echo
curl -X POST -d "hello" http://127.0.0.1:5000/echo
curl -i http://127.0.0.1:5000/echo > response.txt
Like cURL, but for downloading files.
Readings will be updated