So, what does really happen?
- I send a request to dereferencing the resource (any kind of resource) URI @ line 3. I add a content negoitation stuff on the header like line 6.
- The server gives a 303 response (yay!) @ line 14 and because I was asking for text/html content, the server gives a redirection to this location @ line 22.
- I send a second request @ line 30 to get the text/html content (information resource) to the location as specified on the server response.
- I got a 200 @ line 40, voila! Now I could read the information describing the resource URI.