Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Development Tools

cant send a request

i get Welcome to Microsoft Telnet Client

Escape Character is 'CTRL+]'

Microsoft Telnet>

and when i write "telnet httpbin.org 80" i get Invalid Command. type ?/help for help

1 Answer

Steven Parker
Steven Parker
229,644 Points

The command "telnet httpbin.org 80" would be given to the system to run "telnet" and make a connection at the same time. But you're already running "telnet" when you give it, and that's not a valid command from inside "telnet".

Since "telnet" is already running, the command to make the connection would be "open httpbin.org 80" instead.