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 HTTP Basics Introduction to HTTP Sending Data with a POST Request

Julie Pham
Julie Pham
12,290 Points

How can I count the number bytes of data that I will pass in the POST request?

Is there any tool beside telnet that doesn't require to count the number of bytes to pass in the POST request?

4 Answers

nico dev
nico dev
20,364 Points

Wow, fantastic resource. Thank you!

Sean T. Unwin
Sean T. Unwin
28,690 Points

As mentioned in the Teacher's Notes, if the data is utf-8 and part of the Basic Latin Characters we can assume 1 character equals 1 byte.

tl;dr: the total number of characters is equal to the total number of bytes.

Is there a command line tool that I can run to get the exact byte size of the payload I am about to send as a POST request?