TIL Finding Header information on any website
POSTED ON:
TAGS: webdev
!(find-header)[2020-07-17-header-opt.gif]
You can find header data on any website by:
- Visiting Devtools > Network
- Refresh the page to load all files
- Find the Type->Document (which is probably the webpage itself)
- Visit the Headers tab
You can find all sorts of helpful info, like what type of server it is. Or if they pass secret API keys.
Why you should never put secrets in URL query params
Related TILs
Tagged: webdev