The real answer is: you cannot with telnet, cause this is an https-only reachable url. This will give you the https response.
What commands can I use in telnet?
The Telnet standard commands
| Command | Description |
|---|---|
| mode type | Specifies the transmission type (text file, binary file) |
| open hostname | Builds an additional connection to the selected host on top of the existing connection |
| quit | Ends the Telnet client connection including all active connections |
How do I telnet a URL in Windows?
Select the Windows key and the R key. In the Run box type CMD. Select OK. Type Telnet 13531.
How do I connect to a Telnet server?
Answer
- Open a command prompt.
- Type in “telnet ” and press enter.
- For example, you would type “telnet 123.45.
- If a blank screen appears then the port is open, and the test is successful.
- If you receive a connecting… message or an error message then something is blocking that port.
Is Telnet UDP or TCP?
Note: Telnet is an application that operates using the TCP protocol. UDP connectivity can not be tested using Telnet.
How do I send a GET request using telnet?
Enter a request line to send a GET request URL path /, using HTTP 1.1 Enter an HTTP header field line to identify the host name part of the required URL, which is required in HTTP 1.1 Enter a blank line to complete the request. The web server sends the HTTP response, which appears in the Telnet session. The complete session, is as follows.
How do I send a minimal HTTP request from the command line?
You can use Telnet to manually send a minimal HTTP request from the command line, as follows. Start a Telnet session to the web server on port 80: Telnet reports that you have connected to the server: Connected to Escape character is ‘^]’.
What port does the telnet command use?
The 80 specified in the telnet command is the port that you are hitting when you type in a browser. If another port is used you will see it after a colon. ex: hits the server running on port 8080. If there was one. 🙂 When doing GET commands you usually end up sending…
Can I use telnet to send a URL to another server?
The real answer is: you cannot with telnet, cause this is an https-only reachable url. So, you might want to use openssl instead of telnet, like this for instance