Does Alamofire store the cookies automatically?

后端 未结 2 838
感动是毒
感动是毒 2021-01-31 16:13

I\'m new to Alamofire so I\'m sorry if this it\'s a noob question: this framework stores the cookies automatically?

This is because I h

2条回答
  •  逝去的感伤
    2021-01-31 16:46

    Yes! Alamofire is basically a wrapper around NSURLSession. Its manager uses a default NSURLSessionConfiguration by calling defaultSessionConfiguration().

    As its github page says under Advanced Usage section:

    Alamofire is built on NSURLSession and the Foundation URL Loading System. To make the most of this framework, it is recommended that you be familiar with the concepts and capabilities of the underlying networking stack.

    And under Manager section:

    Top-level convenience methods like Alamofire.request use a shared instance of Alamofire.Manager, which is configured with the default NSURLSessionConfiguration.

    And the NSURLSessionConfiguration reference for defaultSessionConfiguration() says:

    The default session configuration uses a persistent disk-based cache (except when the result is downloaded to a file) and stores credentials in the user’s keychain. It also stores cookies (by default) in the same shared cookie store as the NSURLConnection and NSURLDownload classes.

提交回复
热议问题