You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In this project, an HTTP/1.1 server were implemented, capable of interpreting some HTTP protocol commands received through requests from browsers, and respond appropriately to those requests.
67
+
In this project, we implemented a HTTP/1.1 server capable of interpreting a few HTTP requests from browsers and respond appropriately to these requests.
68
68
69
-
The commands implemented were: GET, PUT, POST and DELETE.
69
+
The request methods implemented were: GET, PUT, POST and DELETE.
70
70
71
-
The HTTP server were implemented according to [RFC 2616](https://tools.ietf.org/html/rfc2616), which defines the HTTP/1.1 protocol.
71
+
The HTTP server was implemented according to the[RFC 2616](https://tools.ietf.org/html/rfc2616), which defines the HTTP/1.1 protocol.
In most cases, the server will return status codes on your browser console (which you can see by pressing `F12`) saying whether the operation was successful or not
154
154
155
-
Here are the most common Status codes and how you can see them
155
+
Here are the most common status codes and how you can see them
156
156
157
157
### Successful 2xx
158
158
@@ -168,9 +168,9 @@ Here are the most common Status codes and how you can see them
168
168
169
169
*#### 301 Moved Permanently 👉
170
170
171
-
For this state to occur it is a little more complicated. Go to our server access this folder`./databaseUser/Images`
171
+
For this state to occur it is a little more complicated. Go to our server and access this directory`./databaseUser/Images`
172
172
173
-
Now, feel free to move some image around (just don't take it out of the main folder of this project)
173
+
Now, feel free to move some of the images around (just don't take it out of the main folder of this project)
174
174
175
175
If you try a GET or click on `list all friends`, you can see this status code and the new image path on the terminal
176
176
@@ -203,4 +203,4 @@ Here are the most common Status codes and how you can see them
203
203
[Antonio Gustavo](https://github.com/antuniooh) | [João Vitor Dias](https://github.com/JoaoDias-223) | [Weverson da Silva](https://github.com/WebisD)
0 commit comments