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 trialJulie Pham
12,290 PointsHow 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
Kerstin Reichert
906 PointsYou could use a byte counter like https://mothereff.in/byte-counter
Sean T. Unwin
28,690 PointsAs 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.
Julie Pham
12,290 PointsThanks guys!
byteknacker
Courses Plus Student 2,984 PointsIs 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?
nico dev
20,364 Pointsnico dev
20,364 PointsWow, fantastic resource. Thank you!