Alamofire 清除所有 cookie

Posted

技术标签:

【中文标题】Alamofire 清除所有 cookie【英文标题】:Alamofire clear all cookies 【发布时间】:2017-02-21 12:33:57 【问题描述】:

我需要用户能够退出。当他们现在登录时,会自动保存一个 cookie,效果很好。但我想清除所有 cookie。

NSURLCache.sharedURLCache().removeAllCachedResponses()

这不起作用

【问题讨论】:

【参考方案1】:

您可以像这样 (Swift 3) 删除专门为 URL 存储的所有 cookie:

let cstorage = HTTPCookieStorage.shared
if let cookies = cstorage.cookies(for: url) 
    for cookie in cookies 
        cstorage.deleteCookie(cookie)
    

【讨论】:

以上是关于Alamofire 清除所有 cookie的主要内容,如果未能解决你的问题,请参考以下文章

强制 Alamofire 在主线程上做所有事情?

Alamofire 问题无法使用

Swift 3/Alamofire 4 迁移,必须为 [String: AnyObject] 使所有元素“作为 AnyObject”

Swift Alamofire 如何处理来自循环的所有请求

Alamofire - 有没有办法设置自定义默认队列来处理所有请求回调

Alamofire 打破其他豆荚