版本记录
版本号 | 时间 |
---|---|
V1.0 | 2018.03.14 |
前言
我们做APP发起网络请求,一般都是使用框架,这些框架的底层也都是苹果的API,接下来几篇就一起来看一下和网络有关的几个类。感兴趣的可以看上面几篇文章。
1. 详细解析几个和网络请求有关的类 (一) —— NSURLSession
2. 详细解析几个和网络请求有关的类(二) —— NSURLRequest和NSMutableURLRequest
3. 详细解析几个和网络请求有关的类(三) —— NSURLConnection
4. 详细解析几个和网络请求有关的类(四) —— NSURLSession和NSURLConnection的区别
5. 详细解析几个和网络请求有关的类(五) —— 关于NSURL加载系统(一)
6. 详细解析几个和网络请求有关的类(六) —— 使用NSURLSession(二)
7. 详细解析几个和网络请求有关的类(七) —— URL数据的编码和解码(三)
8. 详细解析几个和网络请求有关的类(八) —— 处理重定向和其他请求更改(四)
9. 详细解析几个和网络请求有关的类(九) —— 身份验证挑战和TLS链验证(五)
10. 详细解析几个和网络请求有关的类(十) —— 理解获取缓存(六)
11. 详细解析几个和网络请求有关的类(十一) —— Cookies和自定义协议(七)
12. 详细解析几个和网络请求有关的类(十二) —— URL Session的生命周期(八)
13. 详细解析几个和网络请求有关的类(十三) —— NSURLResponse(一)
回顾
上一篇讲述关于NSURLResponse
,下面这篇我们就主要看一下NSHTTPCookie
。
Cookie
首先我们要知道Cookie
Cookie是在客户端存储服务器状态的一种机制,Web服务器可以通过Set-Cookie
或者Set-Cookie2
HTTP头部设置Cookie。
Cookie可以分为两类,会话Cookie
和持久Cookie
,会话Cookie是临时Cookie,当前会话结束(浏览器退出)时Cookie会被删除。持久Cookie会存储在用户的硬盘上,浏览器退出,然后重新启动后Cookie仍然存在。会话Cookie和持久Cookie的区别在于过期时间,如果设置了Discard参数(Cookie 版本1)或者没有设置Expires(Cookie版本0)或Max-Age(Cookie版本1)设置过期时间,则此Cookie为会话Cookie。
Cookie有两个版本,一个是版本0(Netscape Cookies)
和版本1(RFC 2965)
,目前大多数服务器使用的Cookie 0。
NSHTTPCookie
在iOS中使用NSHTTPCookie类封装一条cookie,通过NSHTTPCookie
的方法读取到cookie的通用属性。
下面我们就先看一下NSHTTPCookie API
,会给出详细注释。
#import
@class NSArray;
@class NSDate;
@class NSDictionary;
@class NSNumber;
@class NSString;
@class NSURL;
typedef NSString * NSHTTPCookiePropertyKey NS_EXTENSIBLE_STRING_ENUM;
NS_ASSUME_NONNULL_BEGIN
/*!
@const NSHTTPCookieName
@discussion Key for cookie name
*/
FOUNDATION_EXPORT NSHTTPCookiePropertyKey const NSHTTPCookieName;
/*!
@const NSHTTPCookieValue
@discussion Key for cookie value
*/
FOUNDATION_EXPORT NSHTTPCookiePropertyKey const NSHTTPCookieValue;
/*!
@const NSHTTPCookieOriginURL
@discussion Key for cookie origin URL
*/
FOUNDATION_EXPORT NSHTTPCookiePropertyKey const NSHTTPCookieOriginURL;
/*!
@const NSHTTPCookieVersion
@discussion Key for cookie version
*/
FOUNDATION_EXPORT NSHTTPCookiePropertyKey const NSHTTPCookieVersion;
/*!
@const NSHTTPCookieDomain
@discussion Key for cookie domain
*/
FOUNDATION_EXPORT NSHTTPCookiePropertyKey const NSHTTPCookieDomain;
/*!
@const NSHTTPCookiePath
@discussion Key for cookie path
*/
FOUNDATION_EXPORT NSHTTPCookiePropertyKey const NSHTTPCookiePath;
/*!
@const NSHTTPCookieSecure
@discussion Key for cookie secure flag
*/
FOUNDATION_EXPORT NSHTTPCookiePropertyKey const NSHTTPCookieSecure;
/*!
@const NSHTTPCookieExpires
@discussion Key for cookie expiration date
*/
FOUNDATION_EXPORT NSHTTPCookiePropertyKey const NSHTTPCookieExpires;
/*!
@const NSHTTPCookieComment
@discussion Key for cookie comment text
*/
FOUNDATION_EXPORT NSHTTPCookiePropertyKey const NSHTTPCookieComment;
/*!
@const NSHTTPCookieCommentURL
@discussion Key for cookie comment URL
*/
FOUNDATION_EXPORT NSHTTPCookiePropertyKey const NSHTTPCookieCommentURL;
/*!
@const NSHTTPCookieDiscard
@discussion Key for cookie discard (session-only) flag
*/
FOUNDATION_EXPORT NSHTTPCookiePropertyKey const NSHTTPCookieDiscard;
/*!
@const NSHTTPCookieMaximumAge
@discussion Key for cookie maximum age (an alternate way of specifying the expiration)
*/
FOUNDATION_EXPORT NSHTTPCookiePropertyKey const NSHTTPCookieMaximumAge;
/*!
@const NSHTTPCookiePort
@discussion Key for cookie ports
*/
FOUNDATION_EXPORT NSHTTPCookiePropertyKey const NSHTTPCookiePort;
@class NSHTTPCookieInternal;
/*!
@class NSHTTPCookie
@abstract NSHTTPCookie represents an http cookie.
@discussion A NSHTTPCookie instance represents a single http cookie. It is
an immutable object initialized from a dictionary that contains
the various cookie attributes. It has accessors to get the various
attributes of a cookie.
*/
// @abstract NSHTTPCookie代表一个http cookie
// @discussion 一个NSHTTPCookie实例代表一个单独的http cookie。 它是一个从包含各种cookie属性的字典中初始化的不可变对象。 它有访问器来获取cookie的各种属性。
@interface NSHTTPCookie : NSObject
{
@private
NSHTTPCookieInternal * _cookiePrivate;
}
/*!
@method initWithProperties:
@abstract Initialize a NSHTTPCookie object with a dictionary of
parameters
// 根据字典参数初始化一个NSHTTPCookie对象
@param properties The dictionary of properties to be used to
initialize this cookie.
// 用于初始化cookie的属性字典
@discussion Supported dictionary keys and value types for the
given dictionary are as follows.
// 支持的字典的键值类型如下所示
All properties can handle an NSString value, but some can also
handle other types.
// 所有属性都可以处理一个字符串的值,但是一些也可以处理其他类型
Property key constant
Type of value
Required
Description
NSHTTPCookieComment
NSString
NO
Comment for the cookie. Only valid for version 1 cookies and
later. Default is nil.
NSHTTPCookieCommentURL
NSURL or NSString
NO
Comment URL for the cookie. Only valid for version 1 cookies
and later. Default is nil.
NSHTTPCookieDomain
NSString
Special, a value for either NSHTTPCookieOriginURL or
NSHTTPCookieDomain must be specified.
Domain for the cookie. Inferred from the value for
NSHTTPCookieOriginURL if not provided.
NSHTTPCookieDiscard
NSString
NO
A string stating whether the cookie should be discarded at
the end of the session. String value must be either "TRUE" or
"FALSE". Default is "FALSE", unless this is cookie is version
1 or greater and a value for NSHTTPCookieMaximumAge is not
specified, in which case it is assumed "TRUE".
NSHTTPCookieExpires
NSDate or NSString
NO
Expiration date for the cookie. Used only for version 0
cookies. Ignored for version 1 or greater.
NSHTTPCookieMaximumAge
NSString
NO
A string containing an integer value stating how long in
seconds the cookie should be kept, at most. Only valid for
version 1 cookies and later. Default is "0".
NSHTTPCookieName
NSString
YES
Name of the cookie
NSHTTPCookieOriginURL
NSURL or NSString
Special, a value for either NSHTTPCookieOriginURL or
NSHTTPCookieDomain must be specified.
URL that set this cookie. Used as default for other fields
as noted.
NSHTTPCookiePath
NSString
NO
Path for the cookie. Inferred from the value for
NSHTTPCookieOriginURL if not provided. Default is "/".
NSHTTPCookiePort
NSString
NO
comma-separated integer values specifying the ports for the
cookie. Only valid for version 1 cookies and later. Default is
empty string ("").
NSHTTPCookieSecure
NSString
NO
A string stating whether the cookie should be transmitted
only over secure channels. String value must be either "TRUE"
or "FALSE". Default is "FALSE".
NSHTTPCookieValue
NSString
YES
Value of the cookie
NSHTTPCookieVersion
NSString
NO
Specifies the version of the cookie. Must be either "0" or
"1". Default is "0".
All other keys are ignored.
@result An initialized NSHTTPCookie, or nil if the set of
dictionary keys is invalid, for example because a required key is
missing, or a recognized key maps to an illegal value.
// 所有其他的key被忽略
// @result 一个初始化的NSHTTPCookie对象,如果字典的键是无效的,那么就是nil。例如,因为一个key缺失,那么对应映射的值就是不合法的。
*/
- (nullable instancetype)initWithProperties:(NSDictionary *)properties;
/*!
@method cookieWithProperties:
@abstract Allocates and initializes an NSHTTPCookie with the given
dictionary.
@discussion See the NSHTTPCookie -initWithProperties:
method for more information on the constraints imposed on the
dictionary, and for descriptions of the supported keys and values.
@param properties The dictionary to use to initialize this cookie.
@result A newly-created and autoreleased NSHTTPCookie instance, or
nil if the set of dictionary keys is invalid, for example because
a required key is missing, or a recognized key maps to an illegal
value.
*/
// 这个也是实例化的一个方法
// @abstract 根据给定的字典,分配和实例化一个NSHTTPCookie
// @discussion:请参阅NSHTTPCookie -initWithProperties tt>方法以获取有关对字典施加约束的更多信息,以及有关支持的键和值的说明。
// @param: properties用来初始化这个cookie的字典
// @result:新创建并自动释放的NSHTTPCookie实例,如果字典键集合无效,
// 例如缺少必需的键或者识别的键映射为非法值,则为nil
+ (nullable NSHTTPCookie *)cookieWithProperties:(NSDictionary *)properties;
/*!
@method requestHeaderFieldsWithCookies:
@abstract Return a dictionary of header fields that can be used to add the
specified cookies to the request.
@param cookies The cookies to turn into request headers.
@result An NSDictionary where the keys are header field names, and the values
are the corresponding header field values.
*/
// @abstract 返回一个头域的字典,可以用于将指定的cookie加入到请求中。
// @param cookies 转化为请求头的cookies
// @result 一个NSDictionary,其中键是标题字段名称,值是相应的标题字段值
+ (NSDictionary *)requestHeaderFieldsWithCookies:(NSArray *)cookies;
/*!
@method cookiesWithResponseHeaderFields:forURL:
@abstract Return an array of cookies parsed from the specified response header fields and URL.
@param headerFields The response header fields to check for cookies.
@param URL The URL that the cookies came from - relevant to how the cookies are interpeted.
@result An NSArray of NSHTTPCookie objects
@discussion This method will ignore irrelevant header fields so
you can pass a dictionary containing data other than cookie data.
*/
// @abstract 返回从指定的响应头字段和URL解析的数组
// @param headerFields 用于检查cookie的响应标题字段
// @param URL Cookie来自的URL - 与Cookie的解释方式有关
// @result NSHTTPCookie对象数组
// @discussion 此方法将忽略不相关的标题字段,因此您可以传递包含非cookie数据的字典
+ (NSArray *)cookiesWithResponseHeaderFields:(NSDictionary *)headerFields forURL:(NSURL *)URL;
/*!
@abstract Returns a dictionary representation of the receiver.
@discussion This method returns a dictionary representation of the
NSHTTPCookie which can be saved and passed to
-initWithProperties: or +cookieWithProperties:
later to reconstitute an equivalent cookie.
See the NSHTTPCookie -initWithProperties: method for
more information on the constraints imposed on the dictionary, and
for descriptions of the supported keys and values.
@result The dictionary representation of the receiver.
*/
// @abstract 返回一个表示接收者的字典
// @discussion 这个方法返回一个NSHTTPCookie的字典表示,可以保存并传递
// 给 -initWithProperties tt>或 + cookieWithProperties: tt>
// 以后重构一个相同的cookie。
请参阅NSHTTPCookie -initWithProperties tt>
// 方法以获取有关对字典施加的约束以及支持的键和值的说明的更多信息。
@property (nullable, readonly, copy) NSDictionary *properties;
/*!
@abstract Returns the version of the receiver.
@discussion Version 0 maps to "old-style" Netscape cookies.
Version 1 maps to RFC2965 cookies. There may be future versions.
@result the version of the receiver.
*/
// @abstract 返回接收者的版本
// @discussion Version 0 对应"old-style" Netscape cookies,Version 1 对应RFC2965 cookies,也可能有未来的版本。
// @result 接受者的版本
@property (readonly) NSUInteger version;
/*!
@abstract Returns the name of the receiver.
@result the name of the receiver.
*/
@property (readonly, copy) NSString *name;
/*!
@abstract Returns the value of the receiver.
@result the value of the receiver.
*/
@property (readonly, copy) NSString *value;
/*!
@abstract Returns the expires date of the receiver.
@result the expires date of the receiver.
@discussion The expires date is the date when the cookie should be
deleted. The result will be nil if there is no specific expires
date. This will be the case only for "session-only" cookies.
@result The expires date of the receiver.
*/
// @abstract 返回者的结束日期
// @result 接收者的结束日期
// @discussion 过期日期是应该删除cookie的日期。 如果没有特定的过期日期,结果将为nil。
// 这仅适用于“session-only”cookie。
// @result 接受者的结束日期
@property (nullable, readonly, copy) NSDate *expiresDate;
/*!
@abstract Returns whether the receiver is session-only.
@result YES if this receiver should be discarded at the end of the
session (regardless of expiration date), NO if receiver need not
be discarded at the end of the session.
*/
// @abstract 返回接受者是否是session-only
// @result 如果在会话结束时丢弃该接收器(不管截止日期是否),则为YES,
// 如果在会话结束时不需要丢弃接收器,则为NO。
@property (readonly, getter=isSessionOnly) BOOL sessionOnly;
/*!
@abstract Returns the domain of the receiver.
@discussion This value specifies URL domain to which the cookie
should be sent. A domain with a leading dot means the cookie
should be sent to subdomains as well, assuming certain other
restrictions are valid. See RFC 2965 for more detail.
@result The domain of the receiver.
*/
// @abstract 返回接收器的域
// @discussion 该值指定了Cookie应发送到的URL域。 具有前导点的域意味着cookie也应该发送到子域,假设某些其他限制是有效的。
// 有关更多详细信息,请参阅RFC 2965
// @result 接收者的域
@property (readonly, copy) NSString *domain;
/*!
@abstract Returns the path of the receiver.
@discussion This value specifies the URL path under the cookie's
domain for which this cookie should be sent. The cookie will also
be sent for children of that path, so "/" is the most general.
@result The path of the receiver.
*/
// @abstract 返回接受者的路径
// @discussion 该值指定了Cookie应该发送到的Cookie域的URL路径。 该cookie也将被发送给该路径的子路径,所以“/”是最通用的。
// @result 接受者的路径
@property (readonly, copy) NSString *path;
/*!
@abstract Returns whether the receiver should be sent only over
secure channels
@discussion Cookies may be marked secure by a server (or by a javascript).
Cookies marked as such must only be sent via an encrypted connection to
trusted servers (i.e. via SSL or TLS), and should not be delievered to any
javascript applications to prevent cross-site scripting vulnerabilities.
@result YES if this cookie should be sent only over secure channels,
NO otherwise.
*/
// 返回是否接收者应该在安全通道中进行发送。Cookies可能被服务器(或JavaScript)标记为安全。
// 标记为这样的Cookie只能通过加密连接发送到受信任的服务器(即通过SSL或TLS),
// 并且不应该发送到任何JavaScript应用程序以防止跨站点脚本漏洞。返回YES,
// 如果这个cookie只能通过安全通道发送,否则NO。
@property (readonly, getter=isSecure) BOOL secure;
/*!
@abstract Returns whether the receiver should only be sent to HTTP servers
per RFC 2965
@discussion Cookies may be marked as HTTPOnly by a server (or by a javascript).
Cookies marked as such must only be sent via HTTP Headers in HTTP Requests
for URL's that match both the path and domain of the respective Cookies.
Specifically these cookies should not be delivered to any javascript
applications to prevent cross-site scripting vulnerabilities.
@result YES if this cookie should only be sent via HTTP headers,
NO otherwise.
*/
// 返回接收器是否只应按RFC 2965发送到HTTP服务器。Cookie
// 可能被服务器(或JavaScript)标记为HTTPOnly。 标记为这样的Cookie只能通过HTTP请求
// 中的HTTP头发送,以匹配相应Cookie的路径和域的URL。 具体来说,
// 这些cookie不应该传递给任何javascript应用程序,以防止跨站点脚本漏洞。
// 如果此cookie只应通过HTTP标头发送,则为YES,否则为NO
@property (readonly, getter=isHTTPOnly) BOOL HTTPOnly;
/*!
@abstract Returns the comment of the receiver.
@discussion This value specifies a string which is suitable for
presentation to the user explaining the contents and purpose of this
cookie. It may be nil.
@result The comment of the receiver, or nil if the receiver has no
comment.
*/
// 返回接受者的描述。此值指定适合向用户演示的字符串,说明此Cookie的内容和用途,
// 它可能是nil。接收者的描述,或者如果接收者没有描述,则为nil。
@property (nullable, readonly, copy) NSString *comment;
/*!
@abstract Returns the comment URL of the receiver.
@discussion This value specifies a URL which is suitable for
presentation to the user as a link for further information about
this cookie. It may be nil.
@result The comment URL of the receiver, or nil if the receiver
has no comment URL.
*/
// 返回接收者的描述URL。该值指定适合向用户呈现的URL作为关于该cookie的
// 进一步信息的链接。 它可能是nil。接收者的描述URL,如果接收者没有描述URL,则为nil。
@property (nullable, readonly, copy) NSURL *commentURL;
/*!
@abstract Returns the list ports to which the receiver should be
sent.
@discussion This value specifies an NSArray of NSNumbers
(containing integers) which specify the only ports to which this
cookie should be sent.
@result The list ports to which the receiver should be sent. The
array may be nil, in which case this cookie can be sent to any
port.
*/
// 返回接受者应该被发送的端口列表。此值指定NSNumbers(包含整数)的NSArray,
// 它指定此Cookie应发送到的唯一端口。接收者应该发送到的列表端口。
// 该数组可能为nil,在这种情况下,此cookie可以发送到任何端口。
@property (nullable, readonly, copy) NSArray *portList;
@end
上面就是NSHTTPCookie
的API及其注释。
1. 获取Cookie的通用属性
- (NSUInteger)version;
- (NSString *)name;
- (NSString *)value;
- (NSString *)domain;
- (NSString *)path;
- (BOOL)isSessionOnly;
2. Cookie的初始化
+ (id)cookieWithProperties:(NSDictionary *)properties;
- (id)initWithProperties:(NSDictionary *)properties;
+ (NSArray *)cookiesWithResponseHeaderFields:(NSDictionary *)headerFields forURL:(NSURL *)theURL;
3. 读取所有的属性
- (NSDictionary *)properties;
4. NSHTTPCookie实例与HTTP Cookie header相互转换
使用NSHTTPCookie
的类方法可以将NSHTTPCookie
实例与HTTP cookie header
相互转换。
根据NSHTTPCookie
实例数组生成对应的HTTP cookie header
。
+ (NSDictionary *)requestHeaderFieldsWithCookies:(NSArray *)cookies;
从headerFileds
中读取到Cookie相关内容,生成NSHTTPCookie
实例对象数组。
该方法会忽略headerFileds
中与cookie无关的字段,如果headerFileds
中的cookie没有指定domain,则使用theURL的domain,如果没有指定path,则使用”/”
。
除非NSURLRequest
明确指定不使用cookie(HTTPShouldHandleCookies设为NO),否则URL loading system
会自动为NSURLRequest发送合适的存储cookie。从NSURLResponse返回的cookie也会根据当前的cookie访问策略(cookie acceptance policy)
接收到系统中。
后记
本篇我们讲述了关于
NSHTTPCookie
方面的内容。