HTTP - Client (User agents)
> (World Wide) Web - (W3|WWW) > (HTTP|HTTPS) - Hypertext Transfer Protocol
Table of Contents
1 - About
An HTTP client
in HTTP is also known as the user agents
because user-agent
is the name of a header field that identify the client.
Every web client is a HTTP client
.
2 - Articles Related
Advertising
3 - Id
HTTP
identifies the client (ie user-agent
_ using the user-agent header (even when the client is not operated by a user).
4 - List
- every browser is an
HTTP client
. - HTTP diagnostic tool are also client
- postman
4.1 - Java
4.2 - Curl
Call an host on a webserver without modifying the host file
curl --user-agent "Mozilla 5.0" -H "Host: domainName.com" http://182.186.33.19/
5 - Documentation / Reference
Advertising