I'm not very strong with requests yet, but as per my understandings this method is used always with HTTPS pages. Any site have that nowadays.
Just checked google for example. There is full of CONNECT request.
I'm not very strong with requests yet, but as per my understandings this method is used always with HTTPS pages. Any site have that nowadays.
Just checked google for example. There is full of CONNECT request.
Hello!
CONNECT is used to create a proxy tunnel from you->server->another server
example:
client A sends CONNECT request to host B: CONNECT www.another-site.com:443 HTTP/1.1
B now will relay all traffic from client A to www.another-site.com:443
This is only used with proxies, you don't need it to access a HTTPS site.
If you have any questions, I would be happy to help!