How to get only Message Body from a GET HTTP request?

Isabel Cariod

I make a HTTP GET request

char write = "GET /image.png HTTP/1.1\r\n";

enter image description here

And response header

HTTP/1.1 200 OK
Content-Type: image/png
Date: Mon, 26 Sep 2016 03:40:54 GMT
Connection: keep-alive
Content-Length: 14021

�PNG�;oq

Is there a way to get only message body and avoid response headers?

dick Verweij

According to RFC 7230 the response is in the format below:

HTTP-message   = start-line
                  *( header-field CRLF )
                  CRLF
                  [ message-body ]

So search in your result for the first two CRLF's in a row. There is where the body starts..

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Java

HTTP GET with request body

From Dev

http get request with body

From Dev

How to get the Body from a request, using httptools?

From Dev

HTTP GET with request body RETROFIT

From Dev

How to get GET request body

From Dev

How to get value of 'body' object from Slim_Http_Request Object

From Dev

How to get the HTTP Request body content in a Spring Boot Filter?

From Dev

How do I get HTTP Request body content in Laravel?

From Dev

How to get HTTP POST request body in Beanshell Preprocessor?

From Dev

Get raw HTTP request message that would be sent from a HttpGet?

From Dev

How to get raw url from http request message on self hosted server?

From Dev

How to get correct data from HTTP Request

From Dev

How to get response message HTTP Request on Beanshell Jmeter

From Dev

Http POST request get headers and body

From Dev

Send content body with HTTP GET Request in Java

From Dev

How do I get the request body from a connection?

From Java

How to get body / json response from XHR request with Puppeteer

From Dev

How to make HTTP requests in angular and get the body from the object?

From Dev

How to make asynchronous GET request on RAILS and only get view form (not whole body and headers)

From Dev

HTTP Get Request from NodeJS

From Dev

HTTP Get Request from NodeJS

From Dev

Get values from request.body in Node

From Dev

How to get the email message body with ActionMailer

From Dev

How to get message body on tizen web app?

From Dev

How get the sms Body for a message tracking?

From Dev

Get request body from node.js's http.IncomingMessage

From Dev

EssentialAction: How to Get the Body of a Request without Parsing It

From Dev

How to get response headers and body in dispatch request?

From Dev

how to get request body text using bottle?

Related Related

  1. 1

    HTTP GET with request body

  2. 2

    http get request with body

  3. 3

    How to get the Body from a request, using httptools?

  4. 4

    HTTP GET with request body RETROFIT

  5. 5

    How to get GET request body

  6. 6

    How to get value of 'body' object from Slim_Http_Request Object

  7. 7

    How to get the HTTP Request body content in a Spring Boot Filter?

  8. 8

    How do I get HTTP Request body content in Laravel?

  9. 9

    How to get HTTP POST request body in Beanshell Preprocessor?

  10. 10

    Get raw HTTP request message that would be sent from a HttpGet?

  11. 11

    How to get raw url from http request message on self hosted server?

  12. 12

    How to get correct data from HTTP Request

  13. 13

    How to get response message HTTP Request on Beanshell Jmeter

  14. 14

    Http POST request get headers and body

  15. 15

    Send content body with HTTP GET Request in Java

  16. 16

    How do I get the request body from a connection?

  17. 17

    How to get body / json response from XHR request with Puppeteer

  18. 18

    How to make HTTP requests in angular and get the body from the object?

  19. 19

    How to make asynchronous GET request on RAILS and only get view form (not whole body and headers)

  20. 20

    HTTP Get Request from NodeJS

  21. 21

    HTTP Get Request from NodeJS

  22. 22

    Get values from request.body in Node

  23. 23

    How to get the email message body with ActionMailer

  24. 24

    How to get message body on tizen web app?

  25. 25

    How get the sms Body for a message tracking?

  26. 26

    Get request body from node.js's http.IncomingMessage

  27. 27

    EssentialAction: How to Get the Body of a Request without Parsing It

  28. 28

    How to get response headers and body in dispatch request?

  29. 29

    how to get request body text using bottle?

HotTag

Archive