ASIHTTPRequest容許你使用全局存儲來和全部使用CFNetwork或者NSURLRequest接口的程序共享cookie。 緩存
若是設置useCookiePersistence爲YES(默認值),cookie會被存儲在共享的 NSHTTPCookieStorage 容器中,而且會自動被其餘request重用。值得一提的是,ASIHTTPRequest會向服務器發送其餘程序建立的cookie(若是這些cookie對特定request有效的話)。 服務器
你能夠清空session期間建立的全部cookie: cookie
[ASIHTTPRequest setSessionCookies:nil];
這裏的‘session cookies’指的是一個session中建立的全部cookie,而非沒有過時時間的cookie(即一般所指的會話cookie,這種cookie會在程序結束時被清除)。 session
另外,有個方便的函數 clearSession能夠清除session期間產生的全部的cookie和緩存的受權數據。 函數
若是你願意,你大能夠關閉useCookiePersistence,本身來管理某個request的一系列cookie: url
//建立一個cookie NSDictionary *properties = [[[NSMutableDictionary alloc] init] autorelease]; [properties setValue:[@"Test Value" encodedCookieValue] forKey:NSHTTPCookieValue]; [properties setValue:@"ASIHTTPRequestTestCookie" forKey:NSHTTPCookieName]; [properties setValue:@".dreamingwish.com" forKey:NSHTTPCookieDomain]; [properties setValue:[NSDate dateWithTimeIntervalSinceNow:60*60] forKey:NSHTTPCookieExpires]; [properties setValue:@"/asi-http-request/tests" forKey:NSHTTPCookiePath]; NSHTTPCookie *cookie = [[[NSHTTPCookie alloc] initWithProperties:properties] autorelease]; //這個url會返回名爲'ASIHTTPRequestTestCookie'的cookie的值 url = [NSURL URLWithString:@"http://www.dreamingwish.com/"]; request = [ASIHTTPRequest requestWithURL:url]; [request setUseCookiePersistence:NO]; [request setRequestCookies:[NSMutableArray arrayWithObject:cookie]]; [request startSynchronous]; //將會打印: I have 'Test Value' as the value of 'ASIHTTPRequestTestCookie' NSLog(@"%@",[request responseString]);