Unanswered question

Filedown load request

Hey All

I have a GET request that with the following params "xxxx.aspx?width=300&height=200&ext=.mp4 HTTP/1.1"

It is returning a 206 response code which is according to the header is Partial Content.

Is this response correct ?

Thanks

Aidan

Aidan M.
Aidan M.

Aidan M.

Level
0
52 / 100
points

Answers

Nouredine A.
Nouredine A.

Nouredine A.

Level
4
5000 / 5000
points
Team

Your GET request should have a header like this: Range:bytes=0-999 requesting a range of data instead of the full content data.

That may explain why the server sends back an HTTP 206 response with the requested range of data. I guess you may have other GET requests requesting other range of data.

If you remove that header from your GET request the server should send back the full content with an HTTP 200 OK status.