This article is a contributed article. HTTP is an old topic. In projects, we often need to send POST or GET requests to the server, but the understanding of HTTP should not be limited to this. A journey of a thousand miles begins with a single step. The further you want to go, the more thorough and comprehensive your understanding of the basic principles should be. It is not enough to just use ASIHttpRequest or AFNetWorking to pass a parameter and send a request. This article will take you to review HTTP in all aspects. What you can gain from this article:
1. HTTP Protocol HTTP is essentially a protocol, the full name of which is Hypertext Transfer Protocol. As the name suggests, this protocol is used to specify the transmission rules between the client and the server, and the content transmitted is not limited to text (in fact, any type of data can be transmitted). Figure 1.1 Transmission diagram.png 2. Content of HTTP request and response What do we send when we send an HTTP request to the server? Let's take a look at an example diagram of a POST request: Figure 2.1 HTTP_POST request example.png Note: This article uses Paw to simulate sending HTTP requests and uses Charles to capture packets. Select the "Request" and "Raw" options in Charles to see the entire content of the request. The above example diagram actually contains several essential elements of an HTTP request: request line, request header (headerField), request body (body); similarly, the response also has status line, response header, and entity content. Next, we will expand on them one by one. 1. Request line The request line contains the request method (Method), request uniform resource identifier (URI), and HTTP version number, as shown in the first line of Figure 2.1: Figure 2.2 Request line.png
2. Request header The request header mainly stores additional information that the client wants to give to the server. The part in the frame below is the request header: Figure 2.3 Request header.png HTTP requests are represented by NSURLRequest and NSMutableRequest in iOS; HTTP responses are represented by NSHTTPURLResponse.
The body of a POST request may also be empty, so the Content-Length in POST may also be 0
It is worth mentioning that in iOS, when you send any request, whether you like it or not, NSURLRequest will automatically help you record the cookies set on the URL you visit. In iOS, it is represented by NSHTTPCookieStorage, which is a singleton.
You can get all the cookies that are currently saved automatically. If you are interested in cookie operations, please refer to the article "Using cookies in http requests in iOS". The above are the request headers that we often encounter in daily development. In fact, there are other fields, but they cannot be listed one by one due to space limitations. If you want to know all the request headers, please see the request header response header list here. How to set and add these fields in iOS? You can use the -[NSMutableURLRequest addValue: forHTTPHeaderField:] method. You can use -[NSURLRequest allHTTPHeaderFields] to get the fields that have been set for the current request. That is, we can customize the request headers we need through the above interface, but some fields cannot be changed. Let's take a look at the description of iOS: Figure 2.4 iOS request header interface description.png From the documentation, we can see that the Authorization Connection Host WWW-Authenticate header fields should not be changed in iOS. 3. Request body The data that really needs to be sent to the server is the binary NSData type data of the uploaded file in the POST-multipart upload request. The request body is empty in the GET request. The request body is some form data in the ordinary POST request. In iOS, it is generally represented by the HTTPBody property of NSURLRequest and NSMutableURLRequest. To add the body, use -[NSMutableURLRequest setHTTPBody:]. 4. Response status line The status line is the status information returned by the server to the client, including the HTTP version number, status code, and the English name corresponding to the status code. The following is a typical correct status line:
This section needs to talk about error codes. In fact, HTTP request error codes can be roughly divided into the following categories based on the first digit from left to right of the error code: 1XX: Information prompt. It does not represent success or failure, but indicates a temporary response. For example, 100 means continue, and 101 means switch protocol. 2XX: Success 3XX: Redirection 4XX: Client error, most likely a problem with the client. For example, the friendly and lovely 404 means file not found, which means your URI is problematic and the directory on the server does not have the file. 414 URI is too long 5XX: Server error, such as 504 Gateway Timeout You don't need to remember the error code. If an error occurs, just look up the corresponding error code. However, knowing the above classification will help you make a general judgment at the first time. At least you can know whether it is the server or the client. 5. Response header and response entity This part is not much different from the request part. The fields of the response header are slightly different. The header field in the response header also moves to the request header response header list. 3. Introduction to HTTP Version Here I simply divide HTTP versions into three categories: before 1.1, 1.1, and 2.0, and introduce the main differences between these three categories: Before HTTP 1.1
HTTP 1.1 (mainstream version) Compared with versions before 1.1, the following performance improvements have been made
HTTP 2.0 In line with the principle of backward compatibility, 2.0 has all the features of 1.1 and uses the same API. However, 2.0 will only be used for https websites. Since it will take a long time for 2.0 to be popularized, it will not be expanded here. For more new features, please refer to this article. Let's focus on a few changes made in the current 1.1 version. What are the benefits of supporting persistent connections? HTTP is based on TCP connections. If the connection is frequently started and disconnected, a lot of resources will be spent on TCP three-way handshakes and four handshakes, which is inefficient. Take requesting a web page as an example. We know that the image resources on an HTML page are not directly embedded in the web page, but only provide URLs. Images still need to send additional HTTP requests to download. A web page often requires multiple HTTP requests from the request to the final loading to the local. Before version 1.1, requesting a web page required multiple "handshake-handshake" processes, and each connection was independent of each other; while 1.1 and later versions only require at least one. Next is request asynchrony. Its benefits can be found in multi-threaded asynchronous processing, which will not be expanded here. The above characteristics can be represented by Figure 2.3: Figure 3.1 Asynchronous request.jpg We can see that: 1. N requests actually only establish one TCP connection, and 2. N requests are sent asynchronously continuously. 4. Differences between HTTP, Socket and TCP These three concepts are often discussed and are also easy to be confused. Before reviewing, let's take a look at the position relationship of these three in the TCP/IP protocol suite: Figure 4.1 Hierarchical relationship.png HTTP is an application layer protocol, closer to the user end; TCP is a transport layer protocol; and socket is an abstract layer abstracted from the transport layer, essentially an interface. So essentially the three are easy to distinguish. Despite this, sometimes you may be confused, what is the difference between HTTP connection, TCP connection, and socket connection? Well, if the above diagram is not clear enough, let's continue reading. 1. The difference between TCP connection and HTTP connection As mentioned above, HTTP is based on TCP. When a client sends an HTTP request to a server, the first step is to establish a TCP connection with the server, that is, a three-way handshake, "hello, hello". HTTP 1.1 supports persistent connections, that is, a TCP connection can send multiple HTTP requests. Summary: HTTP is based on TCP 2. The difference between TCP connection and Socket connection As we mentioned in Figure 4.1, the socket layer is just an abstract interface layer on the TCP/UDP transport layer, so a socket connection can be based on a connection or UDP. A socket connection based on the TCP protocol also needs to go through a three-way handshake to establish a connection, which is reliable; a socket connection based on the UDP protocol does not require a connection establishment process, but it will be sent regardless of whether the other party can receive it, which is unreliable. Most instant messaging IMs are the latter. Summary: Socket is also based on TCP 3. The difference between HTTP connection and Socket connection It is more meaningful to distinguish these two concepts. After all, TCP is invisible and intangible, while HTTP and Socket are real and can be used.
4. The question is: when should I use HTTP and when should I use socket This question is raised very naturally. When you receive a network communication request with another party, you will naturally consider whether to use HTTP or Socket.
In iOS, HTTP requests are usually made using native NSURLConnection, NSURLSession, or open source AFNetWorking (recommended), ASIHttpRequest (has stopped updating). For Socket connections, I often use CocoaAsyncSocket by robbiehanson (XMPPFramework is also created by him). 5. The end The above is a review of HTTP-related concepts, which is suitable for both novices and experienced students to review together. Welcome to leave a message, if there is anything wrong, please point it out. |
<<: As a developer, how do you think Apple should improve its developer tools?
>>: Use of Android basic IntentService
I have a classmate who works in HR. His salary is...
Ever since my wife became pregnant, people around...
Starting from February 27, scenic spots in Jinan ...
Many brands are accustomed to using the marketing...
Training course video lecture content introductio...
When many SEO practitioners first come into conta...
Today, let’s talk about how to define user activa...
Let’s first understand the difference between use...
At the beginning of 2020, an unexpected epidemic ...
The so-called public relations article , to put i...
In fact, everyone has read a lot of useful inform...
In the past six or seven years, I have been starti...
Use OkHttp as the transport layer implementation....
During our practice, we found that many companies...
360 Brand Direct Advertising Introduction to the ...