iOS开发ASIHTTPRequest中Cookie的使用

移动开发 iOS
本文为大家介绍了iOS开发ASIHTTPRequest中Cookie的使用的内容,其中包括持久化cookie,自己处理cookie等等内容,希望对大家有所帮助。

本文为大家介绍了iOS开发ASIHTTPRequest中Cookie的使用的内容,其中包括持久化cookie,自己处理cookie等等内容,希望对大家有所帮助。

持久化cookie

ASIHTTPRequest允许你使用全局存储来和所有使用CFNetwork或者NSURLRequest接口的程序共享cookie。

如果设置useCookiePersistence为YES(默认值),cookie会被存储在共享的 NSHTTPCookieStorage 容器中,并且会自动被其他request重用。值得一提的是,ASIHTTPRequest会向服务器发送其他程序创建的cookie(如果这些cookie对特定request有效的话)。

你可以清空session期间创建的所有cookie:

  1. [ASIHTTPRequest setSessionCookies:nil]; 

这里的‘session cookies’指的是一个session中创建的所有cookie,而非没有过期时间的cookie(即通常所指的会话cookie,这种cookie会在程序结束时被清除)。

另外,有个方便的函数 clearSession可以清除session期间产生的所有的cookie和缓存的授权数据。 

自己处理cookie

如果你愿意,你大可以关闭useCookiePersistence,自己来管理某个request的一系列cookie:

  1. //创建一个cookie 
  2. NSDictionary *properties = [[[NSMutableDictionary alloc] init] autorelease]; 
  3. [properties setValue:[@"Test Value" encodedCookieValue] forKey:NSHTTPCookieValue]; 
  4. [properties setValue:@"ASIHTTPRequestTestCookie" forKey:NSHTTPCookieName]; 
  5. [properties setValue:@".dreamingwish.com" forKey:NSHTTPCookieDomain]; 
  6. [properties setValue:[NSDate dateWithTimeIntervalSinceNow:60*60] forKey:NSHTTPCookieExpires]; 
  7. [properties setValue:@"/asi-http-request/tests" forKey:NSHTTPCookiePath]; 
  8. NSHTTPCookie *cookie = [[[NSHTTPCookie alloc] initWithProperties:properties] autorelease]; 
  9.  
  10. //这个url会返回名为'ASIHTTPRequestTestCookie'的cookie的值 
  11. url = [NSURL URLWithString:@"http://www.dreamingwish.com/"]; 
  12. request = [ASIHTTPRequest requestWithURL:url]; 
  13. [request setUseCookiePersistence:NO]; 
  14. [request setRequestCookies:[NSMutableArray arrayWithObject:cookie]]; 
  15. [request startSynchronous]; 
  16.  
  17. //将会打印: I have 'Test Value' as the value of 'ASIHTTPRequestTestCookie' 
  18. NSLog(@"%@",[request responseString]); 
责任编辑:闫佳明 来源: dreamingwish
相关推荐

2013-07-22 14:33:15

iOS开发ASIHTTPRequ

2013-07-22 14:15:17

iOS开发ASIHTTPRequ

2013-07-22 14:43:57

iOS开发ASIHTTPRequ

2013-07-21 18:22:59

iOS开发ASIHTTPRequ

2013-07-22 14:38:00

iOS开发ASIHTTPRequ

2013-07-21 18:27:15

iOS开发ASIHTTPRequ

2013-07-21 18:18:00

iOS开发ASIHttpRequ

2013-07-21 18:32:13

iOS开发ASIHTTPRequ

2013-07-22 13:54:32

iOS开发ASIHTTPRequ

2013-07-22 14:25:29

iOS开发ASIHTTPRequ

2013-03-25 14:13:23

iOSASIHTTPRequ

2011-08-22 10:06:38

IOS开发ASIHTTPRequHTTP 请求

2013-07-21 18:09:21

iOS开发ASIHttpRequ创建和执行reques

2013-07-22 14:02:17

iOS开发ASIHTTPRequ

2011-08-10 17:37:00

iPhoneASIHTTPRequ

2013-07-22 14:29:35

iOS开发ASIHTTPRequ

2013-07-21 18:04:22

ASIHttpRequiOS开发

2013-07-22 14:10:26

iOS开发ASIHTTPRequ

2009-02-11 10:08:53

Cookie属性JSP

2013-08-21 10:08:16

点赞
收藏

51CTO技术栈公众号