json 如何使用 Swift 从 NSURLSession 获取 cookie?
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/29596206/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
How to get cookie from a NSURLSession with Swift?
提问by Jorge Casariego
I have a NSURLSession that calls dataTaskWithRequest in order to send a POST request in this way
我有一个调用 dataTaskWithRequest 的 NSURLSession 以便以这种方式发送 POST 请求
func makeRequest(parameters: String, url:String){
var postData:NSData = parameters.dataUsingEncoding(NSASCIIStringEncoding)!
var postLength:NSString = String(postData.length )
var request = NSMutableURLRequest(URL: NSURL(string: url)!)
var session = NSURLSession.sharedSession()
request.HTTPMethod = "POST"
var error:NSError?
//request.HTTPBody = NSJSONSerialization.dataWithJSONObject(postData, options: nil, error: &error)
request.HTTPBody = postData
request.setValue(postLength, forHTTPHeaderField: "Content-Length")
request.setValue("application/x-www-form-urlencoded", forHTTPHeaderField: "Content-Type")
request.setValue("application/json", forHTTPHeaderField: "Accept")
var task = session.dataTaskWithRequest(request, completionHandler: { (data, response, error) -> Void in
println("Response:\(response)")
// Other stuff goes here
})
response is equal to:
响应等于:
<NSHTTPURLResponse: 0x7fcd205d0a00> { URL: http://XXX.XXX.XXX:0000/*** } { status code: 200, headers {
"Cache-Control" = "no-store, no-cache, must-revalidate, post-check=0, pre-check=0";
Connection = close;
"Content-Length" = 16;
"Content-Type" = "application/json; charset=utf-8";
Date = "Mon, 13 Apr 2015 00:07:29 GMT";
Expires = "Thu, 19 Nov 1981 08:52:00 GMT";
Pragma = "no-cache";
Server = "Apache/2.2.15 (CentOS)";
"Set-Cookie" = "MYCOOKIEIS=12dsada342fdshsve4lorewcwd234; path=/";
"X-Powered-By" = "PHP/5.3.14 ZendServer/5.0";
} }
My problem here is that I don't know how to get the cookie that is there in "Set-Cookie" with name MYCOOKIEIS.
我的问题是我不知道如何获取名为 MYCOOKIEIS 的“Set-Cookie”中的 cookie。
I'll use this when user Login so If user is not logged in -> Login (call login api) Else Go to home screen and call other APIs.
我将在用户登录时使用它,因此如果用户未登录 -> 登录(调用登录 api)否则转到主屏幕并调用其他 API。
Somebody can help me to get the cookie out of there?
有人可以帮我把饼干弄出来吗?
I found this answerbut it is in Objective-C and I don't know how to do it with Swift
我找到了这个答案,但它在 Objective-C 中,我不知道如何使用 Swift
回答by Rob
The Swift rendition might look something like:
Swift 版本可能类似于:
let task = session.dataTask(with: request) { data, response, error in
guard
let url = response?.url,
let httpResponse = response as? HTTPURLResponse,
let fields = httpResponse.allHeaderFields as? [String: String]
else { return }
let cookies = HTTPCookie.cookies(withResponseHeaderFields: fields, for: url)
HTTPCookieStorage.shared.setCookies(cookies, for: url, mainDocumentURL: nil)
for cookie in cookies {
var cookieProperties = [HTTPCookiePropertyKey: Any]()
cookieProperties[.name] = cookie.name
cookieProperties[.value] = cookie.value
cookieProperties[.domain] = cookie.domain
cookieProperties[.path] = cookie.path
cookieProperties[.version] = cookie.version
cookieProperties[.expires] = Date().addingTimeInterval(31536000)
let newCookie = HTTPCookie(properties: cookieProperties)
HTTPCookieStorage.shared.setCookie(newCookie!)
print("name: \(cookie.name) value: \(cookie.value)")
}
}
task.resume()
回答by Mellian
I had the same problem: This gets, sets or delete cookies:
我遇到了同样的问题:这会获取、设置或删除 cookie:
func showCookies() {
let cookieStorage = NSHTTPCookieStorage.sharedHTTPCookieStorage()
//println("policy: \(cookieStorage.cookieAcceptPolicy.rawValue)")
let cookies = cookieStorage.cookies as! [NSHTTPCookie]
println("Cookies.count: \(cookies.count)")
for cookie in cookies {
var cookieProperties = [String: AnyObject]()
cookieProperties[NSHTTPCookieName] = cookie.name
cookieProperties[NSHTTPCookieValue] = cookie.value
cookieProperties[NSHTTPCookieDomain] = cookie.domain
cookieProperties[NSHTTPCookiePath] = cookie.path
cookieProperties[NSHTTPCookieVersion] = NSNumber(integer: cookie.version)
cookieProperties[NSHTTPCookieExpires] = cookie.expiresDate
cookieProperties[NSHTTPCookieSecure] = cookie.secure
// Setting a Cookie
if let newCookie = NSHTTPCookie(properties: cookieProperties) {
// Made a copy of cookie (cookie can't be set)
println("Newcookie: \(newCookie)")
NSHTTPCookieStorage.sharedHTTPCookieStorage().setCookie(newCookie)
}
println("ORGcookie: \(cookie)")
}
}
func deleteCookies() {
let cookieStorage = NSHTTPCookieStorage.sharedHTTPCookieStorage()
let cookies = cookieStorage.cookies as! [NSHTTPCookie]
println("Cookies.count: \(cookies.count)")
for cookie in cookies {
println("name: \(cookie.name) value: \(cookie.value)")
NSHTTPCookieStorage.sharedHTTPCookieStorage().deleteCookie(cookie)
}
//Create newCookie: You need all properties, because else newCookie will be nil (propertie are then invalid)
var cookieProperties = [String: AnyObject]()
cookieProperties[NSHTTPCookieName] = "locale"
cookieProperties[NSHTTPCookieValue] = "nl_NL"
cookieProperties[NSHTTPCookieDomain] = "www.digitaallogboek.nl"
cookieProperties[NSHTTPCookiePath] = "/"
cookieProperties[NSHTTPCookieVersion] = NSNumber(integer: 0)
cookieProperties[NSHTTPCookieExpires] = NSDate().dateByAddingTimeInterval(31536000)
var newCookie = NSHTTPCookie(properties: cookieProperties)
println("\(newCookie)")
NSHTTPCookieStorage.sharedHTTPCookieStorage().setCookie(newCookie!)
}
回答by zgorawski
Swift 3/4, concise solution:
Swift 3/4,简洁的解决方案:
let cookieName = "MYCOOKIE"
if let cookie = HTTPCookieStorage.shared.cookies?.first(where: { var cookieProperties = [HTTPCookiePropertyKey:Any]()
cookieProperties[HTTPCookiePropertyKey.name] = "foo"
cookieProperties[HTTPCookiePropertyKey.value] = "bar"
cookieProperties[HTTPCookiePropertyKey.path] = "baz"
cookieProperties[HTTPCookiePropertyKey.domain] = ".example.com"
let cookie = HTTPCookie(properties: cookieProperties)
.name == cookieName }) {
debugPrint("\(cookieName): \(cookie.value)")
}
回答by Paul Cezanne
See the above answers but for Swift 3 you'll want something like this:
请参阅上面的答案,但对于 Swift 3,您需要这样的东西:
guard let realResponse = response as? HTTPURLResponse, realResponse.statusCode == 200 else {
print("Not a 200 response")
return
}
let fields = realResponse.allHeaderFields as? [String :String]
if let cookies = HTTPCookie.cookies(withResponseHeaderFields: fields!, for: response!.url!) {
for cookie in cookies {
print("name: \(cookie.name) value: \(cookie.value)")
}
}
回答by Arturo Silva
Try this code:
试试这个代码:
##代码##
