README.md 78.5 KB
Newer Older
M
Mattt Thompson 已提交
1
![Alamofire: Elegant Networking in Swift](https://raw.githubusercontent.com/Alamofire/Alamofire/assets/alamofire.png)
M
Mattt Thompson 已提交
2

3
[![Build Status](https://travis-ci.org/Alamofire/Alamofire.svg?branch=master)](https://travis-ci.org/Alamofire/Alamofire)
4
[![CocoaPods Compatible](https://img.shields.io/cocoapods/v/Alamofire.svg)](https://img.shields.io/cocoapods/v/Alamofire.svg)
5 6 7
[![Carthage Compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)
[![Platform](https://img.shields.io/cocoapods/p/Alamofire.svg?style=flat)](http://cocoadocs.org/docsets/Alamofire)
[![Twitter](https://img.shields.io/badge/twitter-@AlamofireSF-blue.svg?style=flat)](http://twitter.com/AlamofireSF)
8
[![Gitter](https://badges.gitter.im/Alamofire/Alamofire.svg)](https://gitter.im/Alamofire/Alamofire?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
9

M
Mattt Thompson 已提交
10
Alamofire is an HTTP networking library written in Swift.
11

12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
- [Features](#features)
- [Component Libraries](#component-libraries)
- [Requirements](#requirements)
- [Migration Guides](#migration-guides)
- [Communication](#communication)
- [Installation](#installation)
- [Usage](#usage)
    - **Intro -** [Making a Request](#making-a-request), [Response Handling](#response-handling), [Response Validation](#response-validation), [Response Caching](#response-caching)
	- **HTTP -** [HTTP Methods](#http-methods), [Parameter Encoding](#parameter-encoding), [HTTP Headers](#http-headers), [Authentication](#authentication)
	- **Large Data -** [Downloading Data to a File](#downloading-data-to-a-file), [Uploading Data to a Server](#uploading-data-to-a-server)
	- **Tools -** [Statistical Metrics](#statistical-metrics), [cURL Command Output](#curl-command-output)
- [Advanced Usage](#advanced-usage)
	- **URL Session -** [Session Manager](#session-manager), [Session Delegate](#session-delegate), [Request](#request)
	- **Routing -** [Routing Requests](#routing-requests), [Adapting and Retrying Requests](#adapting-and-retrying-requests)
	- **Model Objects -** [Custom Response Serialization](#custom-response-serialization)
	- **Connection -** [Security](#security), [Network Reachability](#network-reachability)
- [Open Radars](#open-radars)
- [FAQ](#faq)
- [Credits](#credits)
- [Donations](#donations)
- [License](#license)

34 35
## Features

36
- [x] Chainable Request / Response Methods
M
- [x]  
Mattt Thompson 已提交
37
- [x] URL / JSON / plist Parameter Encoding
38
- [x] Upload File / Data / Stream / MultipartFormData
39 40
- [x] Download File using Request or Resume Data
- [x] Authentication with URLCredential
M
- [x]  
Mattt Thompson 已提交
41
- [x] HTTP Response Validation
42 43 44
- [x] Upload and Download Progress Closures with Progress
- [x] cURL Command Output
- [x] Dynamically Adapt and Retry Requests
45
- [x] TLS Certificate and Public Key Pinning
46 47
- [x] Network Reachability
- [x] Comprehensive Unit and Integration Test Coverage
R
rojotek 已提交
48
- [x] [Complete Documentation](http://cocoadocs.org/docsets/Alamofire)
49

50 51 52 53
## Component Libraries

In order to keep Alamofire focused specifically on core networking implementations, additional component libraries have been created by the [Alamofire Software Foundation](https://github.com/Alamofire/Foundation) to bring additional functionality to the Alamofire ecosystem.

54 55
- [AlamofireImage](https://github.com/Alamofire/AlamofireImage) - An image library including image response serializers, `UIImage` and `UIImageView` extensions, custom image filters, an auto-purging in-memory cache and a priority-based image downloading system.
- [AlamofireNetworkActivityIndicator](https://github.com/Alamofire/AlamofireNetworkActivityIndicator) - Controls the visibility of the network activity indicator on iOS using Alamofire. It contains configurable delay timers to help mitigate flicker and can support `URLSession` instances not managed by Alamofire.
56

57 58
## Requirements

59 60
- iOS 8.0+ / macOS 10.10+ / tvOS 9.0+ / watchOS 2.0+
- Xcode 8.1+
C
Christian Noon 已提交
61
- Swift 3.0+
62

63 64
## Migration Guides

65
- [Alamofire 4.0 Migration Guide](https://github.com/Alamofire/Alamofire/blob/master/Documentation/Alamofire%204.0%20Migration%20Guide.md)
66
- [Alamofire 3.0 Migration Guide](https://github.com/Alamofire/Alamofire/blob/master/Documentation/Alamofire%203.0%20Migration%20Guide.md)
67
- [Alamofire 2.0 Migration Guide](https://github.com/Alamofire/Alamofire/blob/master/Documentation/Alamofire%202.0%20Migration%20Guide.md)
68

M
Mattt Thompson 已提交
69 70 71 72 73 74 75 76
## Communication

- If you **need help**, use [Stack Overflow](http://stackoverflow.com/questions/tagged/alamofire). (Tag 'alamofire')
- If you'd like to **ask a general question**, use [Stack Overflow](http://stackoverflow.com/questions/tagged/alamofire).
- If you **found a bug**, open an issue.
- If you **have a feature request**, open an issue.
- If you **want to contribute**, submit a pull request.

77 78
## Installation

79 80
### CocoaPods

81
[CocoaPods](http://cocoapods.org) is a dependency manager for Cocoa projects. You can install it with the following command:
82 83

```bash
84
$ gem install cocoapods
85 86
```

87
> CocoaPods 1.1.0+ is required to build Alamofire 4.0.0+.
88

89 90 91 92
To integrate Alamofire into your Xcode project using CocoaPods, specify it in your `Podfile`:

```ruby
source 'https://github.com/CocoaPods/Specs.git'
93
platform :ios, '10.0'
94
use_frameworks!
95

L
Luis Ferro 已提交
96
target '<Your Target Name>' do
97
    pod 'Alamofire', '~> 4.4'
L
Luis Ferro 已提交
98
end
99 100 101 102 103 104 105 106 107 108
```

Then, run the following command:

```bash
$ pod install
```

### Carthage

109
[Carthage](https://github.com/Carthage/Carthage) is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks.
110 111 112 113 114 115 116 117 118 119 120

You can install Carthage with [Homebrew](http://brew.sh/) using the following command:

```bash
$ brew update
$ brew install carthage
```

To integrate Alamofire into your Xcode project using Carthage, specify it in your `Cartfile`:

```ogdl
121
github "Alamofire/Alamofire" ~> 4.4
122 123
```

V
vlad 已提交
124
Run `carthage update` to build the framework and drag the built `Alamofire.framework` into your Xcode project.
125

126
### Swift Package Manager
127

128
The [Swift Package Manager](https://swift.org/package-manager/) is a tool for automating the distribution of Swift code and is integrated into the `swift` compiler. It is in early development, but Alamofire does support its use on supported platforms. 
129 130 131 132 133 134 135 136 137

Once you have your Swift package set up, adding Alamofire as a dependency is as easy as adding it to the `dependencies` value of your `Package.swift`.

```swift
dependencies: [
    .Package(url: "https://github.com/Alamofire/Alamofire.git", majorVersion: 4)
]
```

138 139 140 141
### Manually

If you prefer not to use either of the aforementioned dependency managers, you can integrate Alamofire into your project manually.

142
#### Embedded Framework
143

144 145
- Open up Terminal, `cd` into your top-level project directory, and run the following command "if" your project is not initialized as a git repository:

146
  ```bash
147 148
  $ git init
  ```
149 150

- Add Alamofire as a git [submodule](http://git-scm.com/docs/git-submodule) by running the following command:
151

152
  ```bash
153 154
  $ git submodule add https://github.com/Alamofire/Alamofire.git
  ```
155

156 157 158 159 160 161 162 163 164 165
- Open the new `Alamofire` folder, and drag the `Alamofire.xcodeproj` into the Project Navigator of your application's Xcode project.

    > It should appear nested underneath your application's blue project icon. Whether it is above or below all the other Xcode groups does not matter.

- Select the `Alamofire.xcodeproj` in the Project Navigator and verify the deployment target matches that of your application target.
- Next, select your application project in the Project Navigator (blue project icon) to navigate to the target configuration window and select the application target under the "Targets" heading in the sidebar.
- In the tab bar at the top of that window, open the "General" panel.
- Click on the `+` button under the "Embedded Binaries" section.
- You will see two different `Alamofire.xcodeproj` folders each with two different versions of the `Alamofire.framework` nested inside a `Products` folder.

166 167
    > It does not matter which `Products` folder you choose from, but it does matter whether you choose the top or bottom `Alamofire.framework`.

168 169
- Select the top `Alamofire.framework` for iOS and the bottom one for OS X.

170
    > You can verify which one you selected by inspecting the build log for your project. The build target for `Alamofire` will be listed as either `Alamofire iOS`, `Alamofire macOS`, `Alamofire tvOS` or `Alamofire watchOS`.
171 172 173

- And that's it!

174
  > The `Alamofire.framework` is automagically added as a target dependency, linked framework and embedded framework in a copy files build phase which is all you need to build on the simulator and a device.
175

176 177
---

M
Mattt Thompson 已提交
178 179
## Usage

M
Mattt Thompson 已提交
180
### Making a Request
M
Mattt Thompson 已提交
181 182

```swift
M
Mattt Thompson 已提交
183 184
import Alamofire

185
Alamofire.request("https://httpbin.org/get")
M
Mattt Thompson 已提交
186 187
```

M
Mattt Thompson 已提交
188
### Response Handling
M
Mattt Thompson 已提交
189

190
Handling the `Response` of a `Request` made in Alamofire involves chaining a response handler onto the `Request`.
191

192 193 194 195 196 197 198 199 200 201 202
```swift
Alamofire.request("https://httpbin.org/get").responseJSON { response in
    print(response.request)  // original URL request
    print(response.response) // HTTP URL response
    print(response.data)     // server data
    print(response.result)   // result of response serialization

    if let JSON = response.result.value {
        print("JSON: \(JSON)")
    }
}
M
Mattt Thompson 已提交
203 204
```

205 206
In the above example, the `responseJSON` handler is appended to the `Request` to be executed once the `Request` is complete. Rather than blocking execution to wait for a response from the server, a [callback](http://en.wikipedia.org/wiki/Callback_%28computer_programming%29) in the form of a closure is specified to handle the response once it's received. The result of a request is only available inside the scope of a response closure. Any execution contingent on the response or data received from the server must be done within a response closure.

M
Mattt Thompson 已提交
207 208
> Networking in Alamofire is done _asynchronously_. Asynchronous programming may be a source of frustration to programmers unfamiliar with the concept, but there are [very good reasons](https://developer.apple.com/library/ios/qa/qa1693/_index.html) for doing it this way.

209
Alamofire contains five different response handlers by default including:
M
Mattt Thompson 已提交
210

211 212 213
```swift
// Response Handler - Unserialized Response
func response(
214
    queue: DispatchQueue?,
215
    completionHandler: @escaping (DefaultDataResponse) -> Void)
216 217 218 219
    -> Self

// Response Data Handler - Serialized into Data
func responseData(
220 221
    queue: DispatchQueue?,
    completionHandler: @escaping (DataResponse<Data>) -> Void)
222 223 224 225
    -> Self

// Response String Handler - Serialized into String
func responseString(
226 227
    queue: DispatchQueue?,
    encoding: String.Encoding?,
228 229 230 231 232
    completionHandler: @escaping (DataResponse<String>) -> Void)
    -> Self

// Response JSON Handler - Serialized into Any
func responseJSON(
233
    queue: DispatchQueue?,
234 235 236 237 238
    completionHandler: @escaping (DataResponse<Any>) -> Void)
    -> Self

// Response PropertyList (plist) Handler - Serialized into Any
func responsePropertyList(
239
    queue: DispatchQueue?,
240 241 242 243
    completionHandler: @escaping (DataResponse<Any>) -> Void))
    -> Self
```

244
None of the response handlers perform any validation of the `HTTPURLResponse` it gets back from the server.
245

246
> For example, response status codes in the `400..<500` and `500..<600` ranges do NOT automatically trigger an `Error`. Alamofire uses [Response Validation](#response-validation) method chaining to achieve this.
247

248
#### Response Handler
249

250
The `response` handler does NOT evaluate any of the response data. It merely forwards on all information directly from the URL session delegate. It is the Alamofire equivalent of using `cURL` to execute a `Request`.
251 252

```swift
253 254 255
Alamofire.request("https://httpbin.org/get").response { response in
    print("Request: \(response.request)")
    print("Response: \(response.response)")
256
    print("Error: \(response.error)")
257

258
    if let data = response.data, let utf8Text = String(data: data, encoding: .utf8) {
259 260 261
    	print("Data: \(utf8Text)")
    }
}
262 263
```

264
> We strongly encourage you to leverage the other response serializers taking advantage of `Response` and `Result` types.
265

266 267 268
#### Response Data Handler

The `responseData` handler uses the `responseDataSerializer` (the object that serializes the server data into some other type) to extract the `Data` returned by the server. If no errors occur and `Data` is returned, the response `Result` will be a `.success` and the `value` will be of type `Data`.
269 270

```swift
271 272 273 274 275 276 277
Alamofire.request("https://httpbin.org/get").responseData { response in
    debugPrint("All Response Info: \(response)")

    if let data = response.result.value, let utf8Text = String(data: data, encoding: .utf8) {
    	print("Data: \(utf8Text)")
    }
}
278 279
```

280
#### Response String Handler
M
Mattt Thompson 已提交
281

282
The `responseString` handler uses the `responseStringSerializer` to convert the `Data` returned by the server into a `String` with the specified encoding. If no errors occur and the server data is successfully serialized into a `String`, the response `Result` will be a `.success` and the `value` will be of type `String`.
M
Mattt Thompson 已提交
283

284 285 286 287 288 289
```swift
Alamofire.request("https://httpbin.org/get").responseString { response in
    print("Success: \(response.result.isSuccess)")
    print("Response String: \(response.result.value)")
}
```
M
Mattt Thompson 已提交
290

291 292 293 294 295
> If no encoding is specified, Alamofire will use the text encoding specified in the `HTTPURLResponse` from the server. If the text encoding cannot be determined by the server response, it defaults to `.isoLatin1`.

#### Response JSON Handler

The `responseJSON` handler uses the `responseJSONSerializer` to convert the `Data` returned by the server into an `Any` type using the specified `JSONSerialization.ReadingOptions`. If no errors occur and the server data is successfully serialized into a JSON object, the response `Result` will be a `.success` and the `value` will be of type `Any`.
296 297

```swift
298 299 300 301 302 303 304
Alamofire.request("https://httpbin.org/get").responseJSON { response in
    debugPrint(response)

    if let json = response.result.value {
        print("JSON: \(json)")
    }
}
305 306
```

307
> All JSON serialization is handled by the `JSONSerialization` API in the `Foundation` framework.
308

309 310 311
#### Chained Response Handlers

Response handlers can even be chained:
312 313

```swift
314 315 316 317 318 319 320
Alamofire.request("https://httpbin.org/get")
    .responseString { response in
        print("Response String: \(response.result.value)")
    }
    .responseJSON { response in
        print("Response JSON: \(response.result.value)")
    }
321 322
```

323 324 325 326
> It is important to note that using multiple response handlers on the same `Request` requires the server data to be serialized multiple times. Once for each response handler.

#### Response Handler Queue

327
Response handlers by default are executed on the main dispatch queue. However, a custom dispatch queue can be provided instead.
M
Mattt Thompson 已提交
328 329

```swift
330 331 332 333 334
let utilityQueue = DispatchQueue.global(qos: .utility)

Alamofire.request("https://httpbin.org/get").responseJSON(queue: utilityQueue) { response in
    print("Executing response handler on utility queue")
}
M
Mattt Thompson 已提交
335 336
```

337 338 339 340 341
### Response Validation

By default, Alamofire treats any completed request to be successful, regardless of the content of the response. Calling `validate` before a response handler causes an error to be generated if the response had an unacceptable status code or MIME type.

#### Manual Validation
M
Mattt Thompson 已提交
342 343

```swift
344 345 346
Alamofire.request("https://httpbin.org/get")
    .validate(statusCode: 200..<300)
    .validate(contentType: ["application/json"])
347
    .responseData { response in
348 349 350 351 352 353
        switch response.result {
        case .success:
            print("Validation Successful")
        case .failure(let error):
            print(error)
        }
354
    }
M
Mattt Thompson 已提交
355 356
```

357
#### Automatic Validation
M
Mattt Thompson 已提交
358

359
Automatically validates status code within `200..<300` range, and that the `Content-Type` header of the response matches the `Accept` header of the request, if one is provided.
M
Mattt Thompson 已提交
360 361

```swift
362 363
Alamofire.request("https://httpbin.org/get").validate().responseJSON { response in
    switch response.result {
364
    case .success:
365
        print("Validation Successful")
366
    case .failure(let error):
367 368 369
        print(error)
    }
}
M
Mattt Thompson 已提交
370 371
```

372 373 374 375
### Response Caching

Response Caching is handled on the system framework level by [`URLCache`](https://developer.apple.com/reference/foundation/urlcache). It provides a composite in-memory and on-disk cache and lets you manipulate the sizes of both the in-memory and on-disk portions.

376
> By default, Alamofire leverages the shared `URLCache`. In order to customize it, see the [Session Manager Configurations](#session-manager) section.
377

M
Mattt Thompson 已提交
378 379
### HTTP Methods

380
The `HTTPMethod` enumeration lists the HTTP methods defined in [RFC 7231 §4.3](http://tools.ietf.org/html/rfc7231#section-4.3):
M
Mattt Thompson 已提交
381 382

```swift
383 384 385 386 387 388 389 390 391 392
public enum HTTPMethod: String {
    case options = "OPTIONS"
    case get     = "GET"
    case head    = "HEAD"
    case post    = "POST"
    case put     = "PUT"
    case patch   = "PATCH"
    case delete  = "DELETE"
    case trace   = "TRACE"
    case connect = "CONNECT"
M
Mattt Thompson 已提交
393 394 395
}
```

396
These values can be passed as the `method` argument to the `Alamofire.request` API:
M
Mattt Thompson 已提交
397 398

```swift
399
Alamofire.request("https://httpbin.org/get") // method defaults to `.get`
M
Mattt Thompson 已提交
400

401 402 403
Alamofire.request("https://httpbin.org/post", method: .post)
Alamofire.request("https://httpbin.org/put", method: .put)
Alamofire.request("https://httpbin.org/delete", method: .delete)
M
Mattt Thompson 已提交
404 405
```

406 407 408 409 410 411 412 413 414 415 416 417 418
> The `Alamofire.request` method parameter defaults to `.get`.

### Parameter Encoding

Alamofire supports three types of parameter encoding including: `URL`, `JSON` and `PropertyList`. It can also support any custom encoding that conforms to the `ParameterEncoding` protocol.

#### URL Encoding

The `URLEncoding` type creates a url-encoded query string to be set as or appended to any existing URL query string or set as the HTTP body of the URL request. Whether the query string is set or appended to any existing URL query string or set as the HTTP body depends on the `Destination` of the encoding. The `Destination` enumeration has three cases:

- `.methodDependent` - Applies encoded query string result to existing query string for `GET`, `HEAD` and `DELETE` requests and sets as the HTTP body for requests with any other HTTP method.
- `.queryString` - Sets or appends encoded query string result to existing query string.
- `.httpBody` - Sets encoded query string result as the HTTP body of the URL request.
M
Mattt Thompson 已提交
419

420 421 422
The `Content-Type` HTTP header field of an encoded request with HTTP body is set to `application/x-www-form-urlencoded; charset=utf-8`. Since there is no published specification for how to encode collection types, the convention of appending `[]` to the key for array values (`foo[]=1&foo[]=2`), and appending the key surrounded by square brackets for nested dictionary values (`foo[bar]=baz`).

##### GET Request With URL-Encoded Parameters
M
Mattt Thompson 已提交
423 424

```swift
425 426 427 428 429 430 431
let parameters: Parameters = ["foo": "bar"]

// All three of these calls are equivalent
Alamofire.request("https://httpbin.org/get", parameters: parameters) // encoding defaults to `URLEncoding.default`
Alamofire.request("https://httpbin.org/get", parameters: parameters, encoding: URLEncoding.default)
Alamofire.request("https://httpbin.org/get", parameters: parameters, encoding: URLEncoding(destination: .methodDependent))

T
tmnb 已提交
432
// https://httpbin.org/get?foo=bar
M
Mattt Thompson 已提交
433 434
```

435
##### POST Request With URL-Encoded Parameters
M
Mattt Thompson 已提交
436 437

```swift
438
let parameters: Parameters = [
M
Mattt Thompson 已提交
439 440 441 442 443 444 445 446 447
    "foo": "bar",
    "baz": ["a", 1],
    "qux": [
        "x": 1,
        "y": 2,
        "z": 3
    ]
]

448
// All three of these calls are equivalent
449 450 451
Alamofire.request("https://httpbin.org/post", method: .post, parameters: parameters)
Alamofire.request("https://httpbin.org/post", method: .post, parameters: parameters, encoding: URLEncoding.default)
Alamofire.request("https://httpbin.org/post", method: .post, parameters: parameters, encoding: URLEncoding.httpBody)
452

M
Mattt Thompson 已提交
453
// HTTP body: foo=bar&baz[]=a&baz[]=1&qux[x]=1&qux[y]=2&qux[z]=3
M
Mattt Thompson 已提交
454 455
```

456
#### JSON Encoding
M
Mattt Thompson 已提交
457

458 459 460
The `JSONEncoding` type creates a JSON representation of the parameters object, which is set as the HTTP body of the request. The `Content-Type` HTTP header field of an encoded request is set to `application/json`.

##### POST Request with JSON-Encoded Parameters
M
Mattt Thompson 已提交
461

M
Mattt Thompson 已提交
462
```swift
463 464 465 466 467 468
let parameters: Parameters = [
    "foo": [1,2,3],
    "bar": [
        "baz": "qux"
    ]
]
M
Mattt Thompson 已提交
469

470 471 472 473 474
// Both calls are equivalent
Alamofire.request("https://httpbin.org/post", method: .post, parameters: parameters, encoding: JSONEncoding.default)
Alamofire.request("https://httpbin.org/post", method: .post, parameters: parameters, encoding: JSONEncoding(options: []))

// HTTP body: {"foo": [1, 2, 3], "bar": {"baz": "qux"}}
M
Mattt Thompson 已提交
475 476
```

477 478 479
#### Property List Encoding

The `PropertyListEncoding` uses `PropertyListSerialization` to create a plist representation of the parameters object, according to the associated format and write options values, which is set as the body of the request. The `Content-Type` HTTP header field of an encoded request is set to `application/x-plist`.
M
Mattt Thompson 已提交
480

481 482 483
#### Custom Encoding

In the event that the provided `ParameterEncoding` types do not meet your needs, you can create your own custom encoding. Here's a quick example of how you could build a custom `JSONStringArrayEncoding` type to encode a JSON string array onto a `Request`.
M
Mattt Thompson 已提交
484 485

```swift
486 487
struct JSONStringArrayEncoding: ParameterEncoding {
	private let array: [String]
M
Mattt Thompson 已提交
488

489 490 491 492 493
    init(array: [String]) {
        self.array = array
    }

    func encode(_ urlRequest: URLRequestConvertible, with parameters: Parameters?) throws -> URLRequest {
494
        var urlRequest = try urlRequest.asURLRequest()
495 496 497 498 499 500 501 502 503 504 505 506

        let data = try JSONSerialization.data(withJSONObject: array, options: [])

        if urlRequest.value(forHTTPHeaderField: "Content-Type") == nil {
            urlRequest.setValue("application/json", forHTTPHeaderField: "Content-Type")
        }

        urlRequest.httpBody = data

        return urlRequest
    }
}
M
Mattt Thompson 已提交
507 508
```

509 510 511
#### Manual Parameter Encoding of a URLRequest

The `ParameterEncoding` APIs can be used outside of making network requests.
M
Mattt Thompson 已提交
512 513

```swift
514 515
let url = URL(string: "https://httpbin.org/get")!
var urlRequest = URLRequest(url: url)
M
Mattt Thompson 已提交
516

517 518
let parameters: Parameters = ["foo": "bar"]
let encodedURLRequest = try URLEncoding.queryString.encode(urlRequest, with: parameters)
M
Mattt Thompson 已提交
519 520
```

521 522 523 524 525
### HTTP Headers

Adding a custom HTTP header to a `Request` is supported directly in the global `request` method. This makes it easy to attach HTTP headers to a `Request` that can be constantly changing.

```swift
526
let headers: HTTPHeaders = [
F
fewspider 已提交
527
    "Authorization": "Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==",
528
    "Accept": "application/json"
529 530
]

531 532 533
Alamofire.request("https://httpbin.org/headers", headers: headers).responseJSON { response in
    debugPrint(response)
}
534 535
```

536
> For HTTP headers that do not change, it is recommended to set them on the `URLSessionConfiguration` so they are automatically applied to any `URLSessionTask` created by the underlying `URLSession`. For more information, see the [Session Manager Configurations](#session-manager) section.
537

538
The default Alamofire `SessionManager` provides a default set of headers for every `Request`. These include:
539

540 541
- `Accept-Encoding`, which defaults to `gzip;q=1.0, compress;q=0.5`, per [RFC 7230 §4.2.3](https://tools.ietf.org/html/rfc7230#section-4.2.3).
- `Accept-Language`, which defaults to up to the top 6 preferred languages on the system, formatted like `en;q=1.0`, per [RFC 7231 §5.3.5](https://tools.ietf.org/html/rfc7231#section-5.3.5).
542
- `User-Agent`, which contains versioning information about the current app. For example: `iOS Example/1.0 (com.alamofire.iOS-Example; build:1; iOS 10.0.0) Alamofire/4.0.0`, per [RFC 7231 §5.5.3](https://tools.ietf.org/html/rfc7231#section-5.5.3).
543

544
If you need to customize these headers, a custom `URLSessionConfiguration` should be created, the `defaultHTTPHeaders` property updated and the configuration applied to a new `SessionManager` instance.
M
Mattt Thompson 已提交
545

546
### Authentication
M
Mattt Thompson 已提交
547

548
Authentication is handled on the system framework level by [`URLCredential`](https://developer.apple.com/reference/foundation/nsurlcredential) and [`URLAuthenticationChallenge`](https://developer.apple.com/reference/foundation/urlauthenticationchallenge).
M
Mattt Thompson 已提交
549

550
**Supported Authentication Schemes**
M
Mattt Thompson 已提交
551

552 553 554 555
- [HTTP Basic](http://en.wikipedia.org/wiki/Basic_access_authentication)
- [HTTP Digest](http://en.wikipedia.org/wiki/Digest_access_authentication)
- [Kerberos](http://en.wikipedia.org/wiki/Kerberos_%28protocol%29)
- [NTLM](http://en.wikipedia.org/wiki/NT_LAN_Manager)
M
Mattt Thompson 已提交
556

557 558 559
#### HTTP Basic Authentication

The `authenticate` method on a `Request` will automatically provide a `URLCredential` to a `URLAuthenticationChallenge` when appropriate:
M
Mattt Thompson 已提交
560 561

```swift
562 563 564 565 566 567 568 569
let user = "user"
let password = "password"

Alamofire.request("https://httpbin.org/basic-auth/\(user)/\(password)")
    .authenticate(user: user, password: password)
    .responseJSON { response in
        debugPrint(response)
    }
M
Mattt Thompson 已提交
570 571
```

572
Depending upon your server implementation, an `Authorization` header may also be appropriate:
M
Mattt Thompson 已提交
573 574

```swift
575 576 577 578 579 580 581 582
let user = "user"
let password = "password"

var headers: HTTPHeaders = [:]

if let authorizationHeader = Request.authorizationHeader(user: user, password: password) {
    headers[authorizationHeader.key] = authorizationHeader.value
}
583

584 585 586 587
Alamofire.request("https://httpbin.org/basic-auth/user/password", headers: headers)
    .responseJSON { response in
        debugPrint(response)
    }
M
Mattt Thompson 已提交
588 589
```

590
#### Authentication with URLCredential
591 592

```swift
593 594 595 596 597 598 599 600 601
let user = "user"
let password = "password"

let credential = URLCredential(user: user, password: password, persistence: .forSession)

Alamofire.request("https://httpbin.org/basic-auth/\(user)/\(password)")
    .authenticate(usingCredential: credential)
    .responseJSON { response in
        debugPrint(response)
602 603 604
    }
```

605
> It is important to note that when using a `URLCredential` for authentication, the underlying `URLSession` will actually end up making two requests if a challenge is issued by the server. The first request will not include the credential which "may" trigger a challenge from the server. The challenge is then received by Alamofire, the credential is appended and the request is retried by the underlying `URLSession`.
M
Mattt Thompson 已提交
606

607
### Downloading Data to a File
M
Mattt Thompson 已提交
608

609
Requests made in Alamofire that fetch data from a server can download the data in-memory or on-disk. The `Alamofire.request` APIs used in all the examples so far always downloads the server data in-memory. This is great for smaller payloads because it's more efficient, but really bad for larger payloads because the download could run your entire application out-of-memory. Because of this, you can also use the `Alamofire.download` APIs to download the server data to a temporary file on-disk.
M
Mattt Thompson 已提交
610

611
> This will only work on `macOS` as is. Other platforms don't allow access to the filesystem outside of your app's sandbox. To download files on other platforms, see the [Download File Destination](#download-file-destination) section.
612

613 614
```swift
Alamofire.download("https://httpbin.org/image/png").responseData { response in
615 616 617
    if let data = response.result.value {
        let image = UIImage(data: data)
    }
618 619 620
}
```

621
> The `Alamofire.download` APIs should also be used if you need to download data while your app is in the background. For more information, please see the [Session Manager Configurations](#session-manager) section.
622 623 624 625 626 627 628

#### Download File Destination

You can also provide a `DownloadFileDestination` closure to move the file from the temporary directory to a final destination. Before the temporary file is actually moved to the `destinationURL`, the `DownloadOptions` specified in the closure will be executed. The two currently supported `DownloadOptions` are:

- `.createIntermediateDirectories` - Creates intermediate directories for the destination URL if specified.
- `.removePreviousFile` - Removes a previous file from the destination URL if specified.
M
Mattt Thompson 已提交
629 630

```swift
631
let destination: DownloadRequest.DownloadFileDestination = { _, _ in
632 633
    let documentsURL = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask)[0]
    let fileURL = documentsURL.appendingPathComponent("pig.png")
M
Mattt Thompson 已提交
634

635 636 637 638 639 640
    return (fileURL, [.removePreviousFile, .createIntermediateDirectories])
}

Alamofire.download(urlString, to: destination).response { response in
    print(response)

641 642 643
    if response.error == nil, let imagePath = response.destinationURL?.path {
        let image = UIImage(contentsOfFile: imagePath)
    }
644
}
M
Mattt Thompson 已提交
645 646
```

647
You can also use the suggested download destination API.
M
Mattt Thompson 已提交
648 649

```swift
650
let destination = DownloadRequest.suggestedDownloadDestination(for: .documentDirectory)
651
Alamofire.download("https://httpbin.org/image/png", to: destination)
652
```
M
Mattt Thompson 已提交
653

654 655
#### Download Progress

656
Many times it can be helpful to report download progress to the user. Any `DownloadRequest` can report download progress using the `downloadProgress` API.
M
Mattt Thompson 已提交
657 658

```swift
659 660 661 662 663
Alamofire.download("https://httpbin.org/image/png")
    .downloadProgress { progress in
        print("Download Progress: \(progress.fractionCompleted)")
    }
    .responseData { response in
664 665 666
        if let data = response.result.value {
            let image = UIImage(data: data)
        }
667
    }
M
Mattt Thompson 已提交
668 669
```

670
The `downloadProgress` API also takes a `queue` parameter which defines which `DispatchQueue` the download progress closure should be called on.
671 672

```swift
673 674 675 676 677 678 679
let utilityQueue = DispatchQueue.global(qos: .utility)

Alamofire.download("https://httpbin.org/image/png")
    .downloadProgress(queue: utilityQueue) { progress in
        print("Download Progress: \(progress.fractionCompleted)")
    }
    .responseData { response in
680 681 682
        if let data = response.result.value {
            let image = UIImage(data: data)
        }
683
    }
684 685
```

686 687 688
#### Resuming a Download

If a `DownloadRequest` is cancelled or interrupted, the underlying URL session may generate resume data for the active `DownloadRequest`. If this happens, the resume data can be re-used to restart the `DownloadRequest` where it left off. The resume data can be accessed through the download response, then reused when trying to restart the request.
689

690 691
> **IMPORTANT:** On the latest release of all the Apple platforms (iOS 10, macOS 10.12, tvOS 10, watchOS 3), `resumeData` is broken on background URL session configurations. There's an underlying bug in the `resumeData` generation logic where the data is written incorrectly and will always fail to resume the download. For more information about the bug and possible workarounds, please see this Stack Overflow [post](http://stackoverflow.com/a/39347461/1342462).

692
```swift
693
class ImageRequestor {
694 695
    private var resumeData: Data?
    private var image: UIImage?
696 697

    func fetchImage(completion: (UIImage?) -> Void) {
698
        guard image == nil else { completion(image) ; return }
699

700 701 702
        let destination: DownloadRequest.DownloadFileDestination = { _, _ in
            let documentsURL = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask)[0]
            let fileURL = documentsURL.appendingPathComponent("pig.png")
703

704 705
            return (fileURL, [.removePreviousFile, .createIntermediateDirectories])
        }
706

707
        let request: DownloadRequest
708 709

        if let resumeData = resumeData {
710 711 712
            request = Alamofire.download(resumingWith: resumeData)
        } else {
            request = Alamofire.download("https://httpbin.org/image/png")
713 714 715
        }

        request.responseData { response in
716 717 718 719 720 721
            switch response.result {
            case .success(let data):
                self.image = UIImage(data: data)
            case .failure:
                self.resumeData = response.resumeData
            }
722
        }
723 724 725 726
    }
}
```

727
### Uploading Data to a Server
M
Mattt Thompson 已提交
728

729
When sending relatively small amounts of data to a server using JSON or URL encoded parameters, the `Alamofire.request` APIs are usually sufficient. If you need to send much larger amounts of data from a file URL or an `InputStream`, then the `Alamofire.upload` APIs are what you want to use.
M
Mattt Thompson 已提交
730

731
> The `Alamofire.upload` APIs should also be used if you need to upload data while your app is in the background. For more information, please see the [Session Manager Configurations](#session-manager) section.
M
Mattt Thompson 已提交
732

733
#### Uploading Data
734

M
Mattt Thompson 已提交
735
```swift
736
let imageData = UIPNGRepresentation(image)!
M
Mattt Thompson 已提交
737

738 739 740
Alamofire.upload(imageData, to: "https://httpbin.org/post").responseJSON { response in
    debugPrint(response)
}
M
Mattt Thompson 已提交
741 742
```

743
#### Uploading a File
744 745

```swift
746
let fileURL = Bundle.main.url(forResource: "video", withExtension: "mov")
747

748 749 750 751
Alamofire.upload(fileURL, to: "https://httpbin.org/post").responseJSON { response in
    debugPrint(response)
}
```
752

753
#### Uploading Multipart Form Data
754

755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772
```swift
Alamofire.upload(
    multipartFormData: { multipartFormData in
        multipartFormData.append(unicornImageURL, withName: "unicorn")
        multipartFormData.append(rainbowImageURL, withName: "rainbow")
    },
    to: "https://httpbin.org/post",
    encodingCompletion: { encodingResult in
    	switch encodingResult {
    	case .success(let upload, _, _):
            upload.responseJSON { response in
                debugPrint(response)
            }
    	case .failure(let encodingError):
    	    print(encodingError)
    	}
    }
)
773 774
```

775 776 777
#### Upload Progress

While your user is waiting for their upload to complete, sometimes it can be handy to show the progress of the upload to the user. Any `UploadRequest` can report both upload progress and download progress of the response data using the `uploadProgress` and `downloadProgress` APIs.
M
Mattt Thompson 已提交
778 779

```swift
780
let fileURL = Bundle.main.url(forResource: "video", withExtension: "mov")
M
Mattt Thompson 已提交
781

782 783 784 785 786 787 788 789 790 791
Alamofire.upload(fileURL, to: "https://httpbin.org/post")
    .uploadProgress { progress in // main queue by default
        print("Upload Progress: \(progress.fractionCompleted)")
    }
    .downloadProgress { progress in // main queue by default
        print("Download Progress: \(progress.fractionCompleted)")
    }
    .responseJSON { response in
        debugPrint(response)
    }
M
Mattt Thompson 已提交
792 793
```

794 795 796
### Statistical Metrics

#### Timeline
797

798
Alamofire collects timings throughout the lifecycle of a `Request` and creates a `Timeline` object exposed as a property on all response types.
799 800

```swift
801 802 803
Alamofire.request("https://httpbin.org/get").responseJSON { response in
    print(response.timeline)
}
804 805 806 807 808 809 810 811 812
```

The above reports the following `Timeline` info:

- `Latency`: 0.428 seconds
- `Request Duration`: 0.428 seconds
- `Serialization Duration`: 0.001 seconds
- `Total Duration`: 0.429 seconds

813 814 815 816 817 818
#### URL Session Task Metrics

In iOS and tvOS 10 and macOS 10.12, Apple introduced the new [URLSessionTaskMetrics](https://developer.apple.com/reference/foundation/urlsessiontaskmetrics) APIs. The task metrics encapsulate some fantastic statistical information about the request and response execution. The API is very similar to the `Timeline`, but provides many more statistics that Alamofire doesn't have access to compute. The metrics can be accessed through any response type.

```swift
Alamofire.request("https://httpbin.org/get").responseJSON { response in
819
    print(response.metrics)
820 821 822 823 824 825 826
}
```

It's important to note that these APIs are only available on iOS and tvOS 10 and macOS 10.12. Therefore, depending on your deployment target, you may need to use these inside availability checks:

```swift
Alamofire.request("https://httpbin.org/get").responseJSON { response in
827 828
    if #available(iOS 10.0, *) {
        print(response.metrics)
829 830 831 832 833 834 835 836 837
    }
}
```

### cURL Command Output

Debugging platform issues can be frustrating. Thankfully, Alamofire `Request` objects conform to both the `CustomStringConvertible` and `CustomDebugStringConvertible` protocols to provide some VERY helpful debugging tools.

#### CustomStringConvertible
M
Mattt Thompson 已提交
838 839

```swift
840
let request = Alamofire.request("https://httpbin.org/ip")
M
Mattt Thompson 已提交
841

842
print(request)
T
tmnb 已提交
843
// GET https://httpbin.org/ip (200)
M
Mattt Thompson 已提交
844 845
```

846
#### CustomDebugStringConvertible
M
Mattt Thompson 已提交
847 848

```swift
849
let request = Alamofire.request("https://httpbin.org/get", parameters: ["foo": "bar"])
850
debugPrint(request)
M
Mattt Thompson 已提交
851 852
```

853
Outputs:
M
Mattt Thompson 已提交
854

855
```bash
M
Mattt Thompson 已提交
856
$ curl -i \
857 858 859 860
    -H "User-Agent: Alamofire/4.0.0" \
    -H "Accept-Encoding: gzip;q=1.0, compress;q=0.5" \
    -H "Accept-Language: en;q=1.0,fr;q=0.9,de;q=0.8,zh-Hans;q=0.7,zh-Hant;q=0.6,ja;q=0.5" \
    "https://httpbin.org/get?foo=bar"
M
Mattt Thompson 已提交
861 862
```

M
Mattt Thompson 已提交
863 864 865
---

## Advanced Usage
M
Mattt Thompson 已提交
866

867
Alamofire is built on `URLSession` 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.
M
Mattt Thompson 已提交
868

M
Mattt Thompson 已提交
869
**Recommended Reading**
M
Mattt Thompson 已提交
870

M
Mattt Thompson 已提交
871
- [URL Loading System Programming Guide](https://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/URLLoadingSystem/URLLoadingSystem.html)
872 873 874
- [URLSession Class Reference](https://developer.apple.com/reference/foundation/nsurlsession)
- [URLCache Class Reference](https://developer.apple.com/reference/foundation/urlcache)
- [URLAuthenticationChallenge Class Reference](https://developer.apple.com/reference/foundation/urlauthenticationchallenge)
M
Mattt Thompson 已提交
875

876
### Session Manager
M
Mattt Thompson 已提交
877

878
Top-level convenience methods like `Alamofire.request` use a default instance of `Alamofire.SessionManager`, which is configured with the default `URLSessionConfiguration`.
M
Mattt Thompson 已提交
879 880 881 882

As such, the following two statements are equivalent:

```swift
883
Alamofire.request("https://httpbin.org/get")
M
Mattt Thompson 已提交
884 885 886
```

```swift
887 888
let sessionManager = Alamofire.SessionManager.default
sessionManager.request("https://httpbin.org/get")
M
Mattt Thompson 已提交
889 890
```

891
Applications can create session managers for background and ephemeral sessions, as well as new managers that customize the default session configuration, such as for default headers (`httpAdditionalHeaders`) or timeout interval (`timeoutIntervalForRequest`).
M
Mattt Thompson 已提交
892

893
#### Creating a Session Manager with Default Configuration
M
Mattt Thompson 已提交
894 895

```swift
896 897
let configuration = URLSessionConfiguration.default
let sessionManager = Alamofire.SessionManager(configuration: configuration)
M
Mattt Thompson 已提交
898 899
```

900
#### Creating a Session Manager with Background Configuration
M
Mattt Thompson 已提交
901 902

```swift
903 904
let configuration = URLSessionConfiguration.background(withIdentifier: "com.example.app.background")
let sessionManager = Alamofire.SessionManager(configuration: configuration)
M
Mattt Thompson 已提交
905 906
```

907
#### Creating a Session Manager with Ephemeral Configuration
M
Mattt Thompson 已提交
908 909

```swift
910 911
let configuration = URLSessionConfiguration.ephemeral
let sessionManager = Alamofire.SessionManager(configuration: configuration)
M
Mattt Thompson 已提交
912 913
```

914
#### Modifying the Session Configuration
M
Mattt Thompson 已提交
915 916

```swift
917
var defaultHeaders = Alamofire.SessionManager.defaultHTTPHeaders
M
Mattt Thompson 已提交
918 919
defaultHeaders["DNT"] = "1 (Do Not Track Enabled)"

920 921
let configuration = URLSessionConfiguration.default
configuration.httpAdditionalHeaders = defaultHeaders
M
Mattt Thompson 已提交
922

923
let sessionManager = Alamofire.SessionManager(configuration: configuration)
M
Mattt Thompson 已提交
924 925
```

926
> This is **not** recommended for `Authorization` or `Content-Type` headers. Instead, use the `headers` parameter in the top-level `Alamofire.request` APIs, `URLRequestConvertible` and `ParameterEncoding`, respectively.
M
Mattt Thompson 已提交
927

928
### Session Delegate
M
Mattt Thompson 已提交
929

930
By default, an Alamofire `SessionManager` instance creates a `SessionDelegate` object to handle all the various types of delegate callbacks that are generated by the underlying `URLSession`. The implementations of each delegate method handle the most common use cases for these types of calls abstracting the complexity away from the top-level APIs. However, advanced users may find the need to override the default functionality for various reasons.
931

932
#### Override Closures
933

934
The first way to customize the `SessionDelegate` behavior is through the use of the override closures. Each closure gives you the ability to override the implementation of the matching `SessionDelegate` API, yet still use the default implementation for all other APIs. This makes it easy to customize subsets of the delegate functionality. Here are a few examples of some of the override closures available:
935 936

```swift
937 938
/// Overrides default behavior for URLSessionDelegate method `urlSession(_:didReceive:completionHandler:)`.
open var sessionDidReceiveChallenge: ((URLSession, URLAuthenticationChallenge) -> (URLSession.AuthChallengeDisposition, URLCredential?))?
939

940 941
/// Overrides default behavior for URLSessionDelegate method `urlSessionDidFinishEvents(forBackgroundURLSession:)`.
open var sessionDidFinishEventsForBackgroundURLSession: ((URLSession) -> Void)?
942

943 944
/// Overrides default behavior for URLSessionTaskDelegate method `urlSession(_:task:willPerformHTTPRedirection:newRequest:completionHandler:)`.
open var taskWillPerformHTTPRedirection: ((URLSession, URLSessionTask, HTTPURLResponse, URLRequest) -> URLRequest?)?
945

946 947
/// Overrides default behavior for URLSessionDataDelegate method `urlSession(_:dataTask:willCacheResponse:completionHandler:)`.
open var dataTaskWillCacheResponse: ((URLSession, URLSessionDataTask, CachedURLResponse) -> CachedURLResponse?)?
948 949
```

950 951
The following is a short example of how to use the `taskWillPerformHTTPRedirection` to avoid following redirects to any `apple.com` domains.

952
```swift
953 954
let sessionManager = Alamofire.SessionManager(configuration: URLSessionConfiguration.default)
let delegate: Alamofire.SessionDelegate = sessionManager.delegate
955

956 957 958 959 960 961 962 963 964
delegate.taskWillPerformHTTPRedirection = { session, task, response, request in
    var finalRequest = request

    if
        let originalRequest = task.originalRequest,
        let urlString = originalRequest.url?.urlString,
        urlString.contains("apple.com")
    {
        finalRequest = originalRequest
965
    }
966 967

    return finalRequest
968 969 970
}
```

971
#### Subclassing
972

973
Another way to override the default implementation of the `SessionDelegate` is to subclass it. Subclassing allows you completely customize the behavior of the API or to create a proxy for the API and still use the default implementation. Creating a proxy allows you to log events, emit notifications, provide pre and post hook implementations, etc. Here's a quick example of subclassing the `SessionDelegate` and logging a message when a redirect occurs.
974 975

```swift
976 977 978 979 980 981 982 983 984
class LoggingSessionDelegate: SessionDelegate {
    override func urlSession(
        _ session: URLSession,
        task: URLSessionTask,
        willPerformHTTPRedirection response: HTTPURLResponse,
        newRequest request: URLRequest,
        completionHandler: @escaping (URLRequest?) -> Void)
    {
        print("URLSession will perform HTTP redirection to request: \(request)")
985

986 987 988 989 990 991 992
        super.urlSession(
            session,
            task: task,
            willPerformHTTPRedirection: response,
            newRequest: request,
            completionHandler: completionHandler
        )
993 994
    }
}
995
```
996

997
Generally speaking, either the default implementation or the override closures should provide the necessary functionality required. Subclassing should only be used as a last resort.
998

999
> It is important to keep in mind that the `subdelegates` are initialized and destroyed in the default implementation. Be careful when subclassing to not introduce memory leaks.
1000

1001
### Request
1002

1003
The result of a `request`, `download`, `upload` or `stream` methods are a `DataRequest`, `DownloadRequest`, `UploadRequest` and `StreamRequest` which all inherit from `Request`. All `Request` instances are always created by an owning session manager, and never initialized directly.
1004

1005
Each subclass has specialized methods such as `authenticate`, `validate`, `responseJSON` and `uploadProgress` that each return the caller instance in order to facilitate method chaining.
1006

1007
Requests can be suspended, resumed and cancelled:
1008

1009 1010 1011
- `suspend()`: Suspends the underlying task and dispatch queue.
- `resume()`: Resumes the underlying task and dispatch queue. If the owning manager does not have `startRequestsImmediately` set to `true`, the request must call `resume()` in order to start.
- `cancel()`: Cancels the underlying task, producing an error that is passed to any registered response handlers.
1012

1013
### Routing Requests
M
Mattt Thompson 已提交
1014

1015
As apps grow in size, it's important to adopt common patterns as you build out your network stack. An important part of that design is how to route your requests. The Alamofire `URLConvertible` and `URLRequestConvertible` protocols along with the `Router` design pattern are here to help.
M
Mattt Thompson 已提交
1016

1017
#### URLConvertible
1018

1019
Types adopting the `URLConvertible` protocol can be used to construct URLs, which are then used to construct URL requests internally. `String`, `URL`, and `URLComponents` conform to `URLConvertible` by default, allowing any of them to be passed as `url` parameters to the `request`, `upload`, and `download` methods:
1020

1021 1022 1023
```swift
let urlString = "https://httpbin.org/post"
Alamofire.request(urlString, method: .post)
1024

1025 1026
let url = URL(string: urlString)!
Alamofire.request(url, method: .post)
1027

1028 1029
let urlComponents = URLComponents(url: url, resolvingAgainstBaseURL: true)!
Alamofire.request(urlComponents, method: .post)
1030 1031
```

1032
Applications interacting with web applications in a significant manner are encouraged to have custom types conform to `URLConvertible` as a convenient way to map domain-specific models to server resources.
M
Mattt Thompson 已提交
1033

1034
##### Type-Safe Routing
M
Mattt Thompson 已提交
1035 1036

```swift
1037
extension User: URLConvertible {
1038
    static let baseURLString = "https://example.com"
M
Mattt Thompson 已提交
1039

1040 1041 1042
    func asURL() throws -> URL {
    	let urlString = User.baseURLString + "/users/\(username)/"
        return try urlString.asURL()
M
Mattt Thompson 已提交
1043 1044 1045 1046 1047
    }
}
```

```swift
1048
let user = User(username: "mattt")
1049
Alamofire.request(user) // https://example.com/users/mattt
M
Mattt Thompson 已提交
1050 1051
```

1052
#### URLRequestConvertible
M
Mattt Thompson 已提交
1053

1054
Types adopting the `URLRequestConvertible` protocol can be used to construct URL requests. `URLRequest` conforms to `URLRequestConvertible` by default, allowing it to be passed into `request`, `upload`, and `download` methods directly (this is the recommended way to specify custom HTTP body for individual requests):
1055 1056

```swift
1057 1058 1059
let url = URL(string: "https://httpbin.org/post")!
var urlRequest = URLRequest(url: url)
urlRequest.httpMethod = "POST"
1060 1061

let parameters = ["foo": "bar"]
1062 1063

do {
1064
    urlRequest.httpBody = try JSONSerialization.data(withJSONObject: parameters, options: [])
1065 1066 1067 1068
} catch {
    // No-op
}

1069
urlRequest.setValue("application/json", forHTTPHeaderField: "Content-Type")
1070

1071
Alamofire.request(urlRequest)
1072
```
M
Mattt Thompson 已提交
1073

1074
Applications interacting with web applications in a significant manner are encouraged to have custom types conform to `URLRequestConvertible` as a way to ensure consistency of requested endpoints. Such an approach can be used to abstract away server-side inconsistencies and provide type-safe routing, as well as manage authentication credentials and other state.
M
Mattt Thompson 已提交
1075

1076
##### API Parameter Abstraction
M
Mattt Thompson 已提交
1077 1078 1079

```swift
enum Router: URLRequestConvertible {
1080
    case search(query: String, page: Int)
M
Mattt Thompson 已提交
1081

1082 1083
    static let baseURLString = "https://example.com"
    static let perPage = 50
M
Mattt Thompson 已提交
1084 1085 1086

    // MARK: URLRequestConvertible

1087
    func asURLRequest() throws -> URLRequest {
1088
        let result: (path: String, parameters: Parameters) = {
M
Mattt Thompson 已提交
1089
            switch self {
1090
            case let .search(query, page) where page > 0:
M
Mattt Thompson 已提交
1091
                return ("/search", ["q": query, "offset": Router.perPage * page])
1092
            case let .search(query, _):
M
Mattt Thompson 已提交
1093 1094 1095 1096
                return ("/search", ["q": query])
            }
        }()

1097
        let url = try Router.baseURLString.asURL()
1098
        let urlRequest = URLRequest(url: url.appendingPathComponent(result.path))
M
Mattt Thompson 已提交
1099

1100
        return try URLEncoding.default.encode(urlRequest, with: result.parameters)
M
Mattt Thompson 已提交
1101 1102 1103 1104
    }
}
```

1105
```swift
1106
Alamofire.request(Router.search(query: "foo bar", page: 1)) // https://example.com/search?q=foo%20bar&offset=50
1107 1108
```

1109
##### CRUD & Authorization
M
Mattt Thompson 已提交
1110 1111

```swift
1112 1113
import Alamofire

M
Mattt Thompson 已提交
1114
enum Router: URLRequestConvertible {
1115 1116 1117 1118
    case createUser(parameters: Parameters)
    case readUser(username: String)
    case updateUser(username: String, parameters: Parameters)
    case destroyUser(username: String)
M
Mattt Thompson 已提交
1119

1120
    static let baseURLString = "https://example.com"
M
Mattt Thompson 已提交
1121

1122
    var method: HTTPMethod {
M
Mattt Thompson 已提交
1123
        switch self {
1124 1125 1126 1127 1128 1129 1130 1131
        case .createUser:
            return .post
        case .readUser:
            return .get
        case .updateUser:
            return .put
        case .destroyUser:
            return .delete
M
Mattt Thompson 已提交
1132 1133 1134 1135 1136
        }
    }

    var path: String {
        switch self {
1137
        case .createUser:
M
Mattt Thompson 已提交
1138
            return "/users"
1139
        case .readUser(let username):
M
Mattt Thompson 已提交
1140
            return "/users/\(username)"
1141
        case .updateUser(let username, _):
M
Mattt Thompson 已提交
1142
            return "/users/\(username)"
1143
        case .destroyUser(let username):
M
Mattt Thompson 已提交
1144 1145 1146 1147 1148 1149
            return "/users/\(username)"
        }
    }

    // MARK: URLRequestConvertible

1150
    func asURLRequest() throws -> URLRequest {
1151
    	let url = try Router.baseURLString.asURL()
M
Mattt Thompson 已提交
1152

1153 1154
        var urlRequest = URLRequest(url: url.appendingPathComponent(path))
        urlRequest.httpMethod = method.rawValue
M
Mattt Thompson 已提交
1155

1156 1157 1158 1159 1160 1161 1162
        switch self {
        case .createUser(let parameters):
            urlRequest = try URLEncoding.default.encode(urlRequest, with: parameters)
        case .updateUser(_, let parameters):
            urlRequest = try URLEncoding.default.encode(urlRequest, with: parameters)
        default:
            break
M
Mattt Thompson 已提交
1163
        }
1164 1165

        return urlRequest
M
Mattt Thompson 已提交
1166 1167 1168 1169
    }
}
```

1170
```swift
1171
Alamofire.request(Router.readUser("mattt")) // GET https://example.com/users/mattt
1172 1173
```

1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185
### Adapting and Retrying Requests

Most web services these days are behind some sort of authentication system. One of the more common ones today is OAuth. This generally involves generating an access token authorizing your application or user to call the various supported web services. While creating these initial access tokens can be laborsome, it can be even more complicated when your access token expires and you need to fetch a new one. There are many thread-safety issues that need to be considered.

The `RequestAdapter` and `RequestRetrier` protocols were created to make it much easier to create a thread-safe authentication system for a specific set of web services.

#### RequestAdapter

The `RequestAdapter` protocol allows each `Request` made on a `SessionManager` to be inspected and adapted before being created. One very specific way to use an adapter is to append an `Authorization` header to requests behind a certain type of authentication.

```swift
class AccessTokenAdapter: RequestAdapter {
1186
    private let accessToken: String
1187

1188 1189 1190
    init(accessToken: String) {
        self.accessToken = accessToken
    }
1191

1192 1193
    func adapt(_ urlRequest: URLRequest) throws -> URLRequest {
        var urlRequest = urlRequest
1194

1195
        if let urlString = urlRequest.url?.absoluteString, urlString.hasPrefix("https://httpbin.org") {
1196 1197
            urlRequest.setValue("Bearer " + accessToken, forHTTPHeaderField: "Authorization")
        }
1198

1199
        return urlRequest
1200 1201
	}
}
1202
```
1203

1204
```swift
1205 1206 1207
let sessionManager = SessionManager()
sessionManager.adapter = AccessTokenAdapter(accessToken: "1234")

1208
sessionManager.request("https://httpbin.org/get")
1209 1210 1211 1212
```

#### RequestRetrier

1213
The `RequestRetrier` protocol allows a `Request` that encountered an `Error` while being executed to be retried. When using both the `RequestAdapter` and `RequestRetrier` protocols together, you can create credential refresh systems for OAuth1, OAuth2, Basic Auth and even exponential backoff retry policies. The possibilities are endless. Here's an example of how you could implement a refresh flow for OAuth2 access tokens.
1214

1215
> **DISCLAIMER:** This is **NOT** a global `OAuth2` solution. It is merely an example demonstrating how one could use the `RequestAdapter` in conjunction with the `RequestRetrier` to create a thread-safe refresh system.
1216 1217 1218

> To reiterate, **do NOT copy** this sample code and drop it into a production application. This is merely an example. Each authentication system must be tailored to a particular platform and authentication type.

1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250
```swift
class OAuth2Handler: RequestAdapter, RequestRetrier {
    private typealias RefreshCompletion = (_ succeeded: Bool, _ accessToken: String?, _ refreshToken: String?) -> Void

    private let sessionManager: SessionManager = {
        let configuration = URLSessionConfiguration.default
        configuration.httpAdditionalHeaders = SessionManager.defaultHTTPHeaders

        return SessionManager(configuration: configuration)
    }()

    private let lock = NSLock()

    private var clientID: String
    private var baseURLString: String
    private var accessToken: String
    private var refreshToken: String

    private var isRefreshing = false
    private var requestsToRetry: [RequestRetryCompletion] = []

    // MARK: - Initialization

    public init(clientID: String, baseURLString: String, accessToken: String, refreshToken: String) {
        self.clientID = clientID
        self.baseURLString = baseURLString
        self.accessToken = accessToken
        self.refreshToken = refreshToken
    }

    // MARK: - RequestAdapter

1251
    func adapt(_ urlRequest: URLRequest) throws -> URLRequest {
1252
        if let urlString = urlRequest.url?.absoluteString, urlString.hasPrefix(baseURLString) {
1253 1254 1255
            var urlRequest = urlRequest
            urlRequest.setValue("Bearer " + accessToken, forHTTPHeaderField: "Authorization")
            return urlRequest
1256 1257 1258 1259 1260 1261 1262
        }

        return urlRequest
    }

    // MARK: - RequestRetrier

1263
    func should(_ manager: SessionManager, retry request: Request, with error: Error, completion: @escaping RequestRetryCompletion) {
1264 1265
        lock.lock() ; defer { lock.unlock() }

1266
        if let response = request.task?.response as? HTTPURLResponse, response.statusCode == 401 {
1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290
            requestsToRetry.append(completion)

            if !isRefreshing {
                refreshTokens { [weak self] succeeded, accessToken, refreshToken in
                    guard let strongSelf = self else { return }

                    strongSelf.lock.lock() ; defer { strongSelf.lock.unlock() }

                    if let accessToken = accessToken, let refreshToken = refreshToken {
                        strongSelf.accessToken = accessToken
                        strongSelf.refreshToken = refreshToken
                    }

                    strongSelf.requestsToRetry.forEach { $0(succeeded, 0.0) }
                    strongSelf.requestsToRetry.removeAll()
                }
            }
        } else {
            completion(false, 0.0)
        }
    }

    // MARK: - Private - Refresh Tokens

1291
    private func refreshTokens(completion: @escaping RefreshCompletion) {
1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304
        guard !isRefreshing else { return }

        isRefreshing = true

        let urlString = "\(baseURLString)/oauth2/token"

        let parameters: [String: Any] = [
            "access_token": accessToken,
            "refresh_token": refreshToken,
            "client_id": clientID,
            "grant_type": "refresh_token"
        ]

1305 1306 1307
        sessionManager.request(urlString, method: .post, parameters: parameters, encoding: JSONEncoding.default)
            .responseJSON { [weak self] response in
                guard let strongSelf = self else { return }
1308

1309 1310 1311 1312 1313 1314
                if 
                    let json = response.result.value as? [String: Any], 
                    let accessToken = json["access_token"] as? String, 
                    let refreshToken = json["refresh_token"] as? String 
                {
                    completion(true, accessToken, refreshToken)
1315 1316 1317
                } else {
                    completion(false, nil, nil)
                }
1318

1319 1320
                strongSelf.isRefreshing = false
            }
1321 1322
    }
}
1323
```
1324

1325
```swift
1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340
let baseURLString = "https://some.domain-behind-oauth2.com"

let oauthHandler = OAuth2Handler(
    clientID: "12345678",
    baseURLString: baseURLString,
    accessToken: "abcd1234",
    refreshToken: "ef56789a"
)

let sessionManager = SessionManager()
sessionManager.adapter = oauthHandler
sessionManager.retrier = oauthHandler

let urlString = "\(baseURLString)/some/endpoint"

1341
sessionManager.request(urlString).validate().responseJSON { response in
1342 1343 1344 1345
    debugPrint(response)
}
```

1346
Once the `OAuth2Handler` is applied as both the `adapter` and `retrier` for the `SessionManager`, it will handle an invalid access token error by automatically refreshing the access token and retrying all failed requests in the same order they failed.
1347

1348
> If you needed them to execute in the same order they were created, you could sort them by their task identifiers.
1349 1350 1351 1352 1353

The example above only checks for a `401` response code which is not nearly robust enough, but does demonstrate how one could check for an invalid access token error. In a production application, one would want to check the `realm` and most likely the `www-authenticate` header response although it depends on the OAuth2 implementation.

Another important note is that this authentication system could be shared between multiple session managers. For example, you may need to use both a `default` and `ephemeral` session configuration for the same set of web services. The example above allows the same `oauthHandler` instance to be shared across multiple session managers to manage the single refresh flow.

1354 1355
### Custom Response Serialization

1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416
Alamofire provides built-in response serialization for data, strings, JSON, and property lists:

```swift
Alamofire.request(...).responseData { (resp: DataResponse<Data>) in ... }
Alamofire.request(...).responseString { (resp: DataResponse<String>) in ... }
Alamofire.request(...).responseJSON { (resp: DataResponse<Any>) in ... }
Alamofire.request(...).responsePropertyList { resp: DataResponse<Any>) in ... }
```

Those responses wrap deserialized *values* (Data, String, Any) or *errors* (network, validation errors), as well as *meta-data* (URL request, HTTP headers, status code, [metrics](#statistical-metrics), ...).

You have several ways to customize all of those response elements:

- [Response Mapping](#response-mapping)
- [Handling Errors](#handling-errors)
- [Creating a Custom Response Serializer](#creating-a-custom-response-serializer)
- [Generic Response Object Serialization](#generic-response-object-serialization)

#### Response Mapping

Response mapping is the simplest way to produce customized responses. It transforms the value of a response, while preserving eventual errors and meta-data. For example, you can turn a json response `DataResponse<Any>` into a response that holds an application model, such as `DataResponse<User>`. You perform response mapping with the `DataResponse.map` method:

```swift
Alamofire.request("https://example.com/users/mattt").responseJSON { (response: DataResponse<Any>) in
    let userResponse = response.map { json in
        // We assume an existing User(json: Any) initializer
        return User(json: json)
    }

    // Process userResponse, of type DataResponse<User>:
    if let user = userResponse.value {
        print("User: { username: \(user.username), name: \(user.name) }")
    }
}
```

When the transformation may throw an error, use `flatMap` instead:

```swift
Alamofire.request("https://example.com/users/mattt").responseJSON { response in
    let userResponse = response.flatMap { json in
        try User(json: json)
    }
}
```

Response mapping is a good fit for your custom completion handlers:

```swift
@discardableResult
func loadUser(completionHandler: @escaping (DataResponse<User>) -> Void) -> Alamofire.DataRequest {
    return Alamofire.request("https://example.com/users/mattt").responseJSON { response in
        let userResponse = response.flatMap { json in
            try User(json: json)
        }

        completionHandler(userResponse)
    }
}

loadUser { response in
1417
    if let user = response.value {
1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443
        print("User: { username: \(user.username), name: \(user.name) }")
    }
}
```

When the map/flatMap closure may process a big amount of data, make sure you execute it outside of the main thread:

```swift
@discardableResult
func loadUser(completionHandler: @escaping (DataResponse<User>) -> Void) -> Alamofire.DataRequest {
    let utilityQueue = DispatchQueue.global(qos: .utility)

    return Alamofire.request("https://example.com/users/mattt").responseJSON(queue: utilityQueue) { response in
        let userResponse = response.flatMap { json in
            try User(json: json)
        }

        DispatchQueue.main.async {
            completionHandler(userResponse)
        }
    }
}
```

`map` and `flatMap` are also available for [download responses](#downloading-data-to-a-file).

1444 1445
#### Handling Errors

1446
Before implementing custom response serializers or object serialization methods, it's important to consider how to handle any errors that may occur. There are two basic options: passing existing errors along unmodified, to be dealt with at response time; or, wrapping all errors in an `Error` type specific to your app.
1447

1448
For example, here's a simple `BackendError` enum which will be used in later examples:
1449 1450 1451

```swift
enum BackendError: Error {
1452 1453
    case network(error: Error) // Capture any underlying Error from the URLSession API
    case dataSerialization(error: Error)
1454 1455
    case jsonSerialization(error: Error)
    case xmlSerialization(error: Error)
1456
    case objectSerialization(reason: String)
1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469
}
```

#### Creating a Custom Response Serializer

Alamofire provides built-in response serialization for strings, JSON, and property lists, but others can be added in extensions on `Alamofire.DataRequest` and / or `Alamofire.DownloadRequest`.

For example, here's how a response handler using [Ono](https://github.com/mattt/Ono) might be implemented:

```swift
extension DataRequest {
    static func xmlResponseSerializer() -> DataResponseSerializer<ONOXMLDocument> {
        return DataResponseSerializer { request, response, data, error in
1470
            // Pass through any underlying URLSession error to the .network case.
1471 1472
            guard error == nil else { return .failure(BackendError.network(error: error!)) }

1473
            // Use Alamofire's existing data serializer to extract the data, passing the error as nil, as it has
1474
            // already been handled.
1475
            let result = Request.serializeResponseData(response: response, data: data, error: nil)
1476

1477 1478
            guard case let .success(validData) = result else {
                return .failure(BackendError.dataSerialization(error: result.error! as! AFError))
1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523
            }

            do {
                let xml = try ONOXMLDocument(data: validData)
                return .success(xml)
            } catch {
                return .failure(BackendError.xmlSerialization(error: error))
            }
        }
    }

    @discardableResult
    func responseXMLDocument(
        queue: DispatchQueue? = nil,
        completionHandler: @escaping (DataResponse<ONOXMLDocument>) -> Void)
        -> Self
    {
        return response(
            queue: queue,
            responseSerializer: DataRequest.xmlResponseSerializer(),
            completionHandler: completionHandler
        )
    }
}
```

#### Generic Response Object Serialization

Generics can be used to provide automatic, type-safe response object serialization.

```swift
protocol ResponseObjectSerializable {
    init?(response: HTTPURLResponse, representation: Any)
}

extension DataRequest {
    func responseObject<T: ResponseObjectSerializable>(
        queue: DispatchQueue? = nil,
        completionHandler: @escaping (DataResponse<T>) -> Void)
        -> Self
    {
        let responseSerializer = DataResponseSerializer<T> { request, response, data, error in
            guard error == nil else { return .failure(BackendError.network(error: error!)) }

            let jsonResponseSerializer = DataRequest.jsonResponseSerializer(options: .allowFragments)
1524
            let result = jsonResponseSerializer.serializeResponse(request, response, data, nil)
1525

1526 1527 1528
            guard case let .success(jsonObject) = result else {
                return .failure(BackendError.jsonSerialization(error: result.error!))
            }
1529

1530 1531
            guard let response = response, let responseObject = T(response: response, representation: jsonObject) else {
                return .failure(BackendError.objectSerialization(reason: "JSON could not be serialized: \(jsonObject)"))
1532
            }
1533 1534

            return .success(responseObject)
1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608
        }

        return response(queue: queue, responseSerializer: responseSerializer, completionHandler: completionHandler)
    }
}
```

```swift
struct User: ResponseObjectSerializable, CustomStringConvertible {
    let username: String
    let name: String

    var description: String {
        return "User: { username: \(username), name: \(name) }"
    }

    init?(response: HTTPURLResponse, representation: Any) {
        guard
            let username = response.url?.lastPathComponent,
            let representation = representation as? [String: Any],
            let name = representation["name"] as? String
        else { return nil }

        self.username = username
        self.name = name
    }
}
```

```swift
Alamofire.request("https://example.com/users/mattt").responseObject { (response: DataResponse<User>) in
    debugPrint(response)

    if let user = response.result.value {
        print("User: { username: \(user.username), name: \(user.name) }")
    }
}
```

The same approach can also be used to handle endpoints that return a representation of a collection of objects:

```swift
protocol ResponseCollectionSerializable {
    static func collection(from response: HTTPURLResponse, withRepresentation representation: Any) -> [Self]
}

extension ResponseCollectionSerializable where Self: ResponseObjectSerializable {
    static func collection(from response: HTTPURLResponse, withRepresentation representation: Any) -> [Self] {
        var collection: [Self] = []

        if let representation = representation as? [[String: Any]] {
            for itemRepresentation in representation {
                if let item = Self(response: response, representation: itemRepresentation) {
                    collection.append(item)
                }
            }
        }

        return collection
    }
}
```

```swift
extension DataRequest {
    @discardableResult
    func responseCollection<T: ResponseCollectionSerializable>(
        queue: DispatchQueue? = nil,
        completionHandler: @escaping (DataResponse<[T]>) -> Void) -> Self
    {
        let responseSerializer = DataResponseSerializer<[T]> { request, response, data, error in
            guard error == nil else { return .failure(BackendError.network(error: error!)) }

            let jsonSerializer = DataRequest.jsonResponseSerializer(options: .allowFragments)
1609
            let result = jsonSerializer.serializeResponse(request, response, data, nil)
1610

1611 1612 1613
            guard case let .success(jsonObject) = result else {
                return .failure(BackendError.jsonSerialization(error: result.error!))
            }
1614

1615 1616 1617
            guard let response = response else {
                let reason = "Response collection could not be serialized due to nil response."
                return .failure(BackendError.objectSerialization(reason: reason))
1618
            }
1619 1620

            return .success(T.collection(from: response, withRepresentation: jsonObject))
1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659
        }

        return response(responseSerializer: responseSerializer, completionHandler: completionHandler)
    }
}
```

```swift
struct User: ResponseObjectSerializable, ResponseCollectionSerializable, CustomStringConvertible {
    let username: String
    let name: String

    var description: String {
        return "User: { username: \(username), name: \(name) }"
    }

    init?(response: HTTPURLResponse, representation: Any) {
        guard
            let username = response.url?.lastPathComponent,
            let representation = representation as? [String: Any],
            let name = representation["name"] as? String
        else { return nil }

        self.username = username
        self.name = name
    }
}
```

```swift
Alamofire.request("https://example.com/users").responseCollection { (response: DataResponse<[User]>) in
    debugPrint(response)

    if let users = response.result.value {
        users.forEach { print("- \($0)") }
    }
}
```

1660 1661 1662 1663 1664 1665
### Security

Using a secure HTTPS connection when communicating with servers and web services is an important step in securing sensitive data. By default, Alamofire will evaluate the certificate chain provided by the server using Apple's built in validation provided by the Security framework. While this guarantees the certificate chain is valid, it does not prevent man-in-the-middle (MITM) attacks or other potential vulnerabilities. In order to mitigate MITM attacks, applications dealing with sensitive customer data or financial information should use certificate or public key pinning provided by the `ServerTrustPolicy`.

#### ServerTrustPolicy

1666
The `ServerTrustPolicy` enumeration evaluates the server trust generally provided by an `URLAuthenticationChallenge` when connecting to a server over a secure HTTPS connection.
1667 1668

```swift
1669
let serverTrustPolicy = ServerTrustPolicy.pinCertificates(
1670
    certificates: ServerTrustPolicy.certificates(),
1671 1672 1673 1674 1675 1676 1677
    validateCertificateChain: true,
    validateHost: true
)
```

There are many different cases of server trust evaluation giving you complete control over the validation process:

1678
* `performDefaultEvaluation`: Uses the default server trust evaluation while allowing you to control whether to validate the host provided by the challenge.
1679 1680 1681 1682
* `pinCertificates`: Uses the pinned certificates to validate the server trust. The server trust is considered valid if one of the pinned certificates match one of the server certificates.
* `pinPublicKeys`: Uses the pinned public keys to validate the server trust. The server trust is considered valid if one of the pinned public keys match one of the server certificate public keys.
* `disableEvaluation`: Disables all evaluation which in turn will always consider any server trust as valid.
* `customEvaluation`: Uses the associated closure to evaluate the validity of the server trust thus giving you complete control over the validation process. Use with caution.
1683 1684 1685

#### Server Trust Policy Manager

1686
The `ServerTrustPolicyManager` is responsible for storing an internal mapping of server trust policies to a particular host. This allows Alamofire to evaluate each host against a different server trust policy.
1687 1688 1689

```swift
let serverTrustPolicies: [String: ServerTrustPolicy] = [
1690
    "test.example.com": .pinCertificates(
1691
        certificates: ServerTrustPolicy.certificates(),
1692 1693 1694
        validateCertificateChain: true,
        validateHost: true
    ),
1695
    "insecure.expired-apis.com": .disableEvaluation
1696 1697
]

1698
let sessionManager = SessionManager(
1699 1700 1701 1702
    serverTrustPolicyManager: ServerTrustPolicyManager(policies: serverTrustPolicies)
)
```

1703
> Make sure to keep a reference to the new `SessionManager` instance, otherwise your requests will all get cancelled when your `sessionManager` is deallocated.
1704

1705 1706
These server trust policies will result in the following behavior:

1707 1708 1709 1710 1711 1712
- `test.example.com` will always use certificate pinning with certificate chain and host validation enabled thus requiring the following criteria to be met to allow the TLS handshake to succeed:
	- Certificate chain MUST be valid.
	- Certificate chain MUST include one of the pinned certificates.
	- Challenge host MUST match the host in the certificate chain's leaf certificate.
- `insecure.expired-apis.com` will never evaluate the certificate chain and will always allow the TLS handshake to succeed.
- All other hosts will use the default evaluation provided by Apple.
1713

1714 1715 1716 1717 1718 1719
##### Subclassing Server Trust Policy Manager

If you find yourself needing more flexible server trust policy matching behavior (i.e. wildcarded domains), then subclass the `ServerTrustPolicyManager` and override the `serverTrustPolicyForHost` method with your own custom implementation.

```swift
class CustomServerTrustPolicyManager: ServerTrustPolicyManager {
1720
    override func serverTrustPolicy(forHost host: String) -> ServerTrustPolicy? {
1721 1722 1723 1724 1725 1726 1727 1728 1729
        var policy: ServerTrustPolicy?

        // Implement your custom domain matching behavior...

        return policy
    }
}
```

1730 1731
#### Validating the Host

1732
The `.performDefaultEvaluation`, `.pinCertificates` and `.pinPublicKeys` server trust policies all take a `validateHost` parameter. Setting the value to `true` will cause the server trust evaluation to verify that hostname in the certificate matches the hostname of the challenge. If they do not match, evaluation will fail. A `validateHost` value of `false` will still evaluate the full certificate chain, but will not validate the hostname of the leaf certificate.
1733 1734 1735 1736 1737

> It is recommended that `validateHost` always be set to `true` in production environments.

#### Validating the Certificate Chain

D
dersvenhesse 已提交
1738
Pinning certificates and public keys both have the option of validating the certificate chain using the `validateCertificateChain` parameter. By setting this value to `true`, the full certificate chain will be evaluated in addition to performing a byte equality check against the pinned certificates or public keys. A value of `false` will skip the certificate chain validation, but will still perform the byte equality check.
1739 1740 1741 1742 1743

There are several cases where it may make sense to disable certificate chain validation. The most common use cases for disabling validation are self-signed and expired certificates. The evaluation would always fail in both of these cases, but the byte equality check will still ensure you are receiving the certificate you expect from the server.

> It is recommended that `validateCertificateChain` always be set to `true` in production environments.

1744 1745 1746 1747 1748 1749 1750 1751
#### App Transport Security

With the addition of App Transport Security (ATS) in iOS 9, it is possible that using a custom `ServerTrustPolicyManager` with several `ServerTrustPolicy` objects will have no effect. If you continuously see `CFNetwork SSLHandshake failed (-9806)` errors, you have probably run into this problem. Apple's ATS system overrides the entire challenge system unless you configure the ATS settings in your app's plist to disable enough of it to allow your app to evaluate the server trust.

If you run into this problem (high probability with self-signed certificates), you can work around this issue by adding the following to your `Info.plist`.

```xml
<dict>
1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769
    <key>NSAppTransportSecurity</key>
    <dict>
        <key>NSExceptionDomains</key>
        <dict>
            <key>example.com</key>
            <dict>
                <key>NSExceptionAllowsInsecureHTTPLoads</key>
                <true/>
                <key>NSExceptionRequiresForwardSecrecy</key>
                <false/>
                <key>NSIncludesSubdomains</key>
                <true/>
                <!-- Optional: Specify minimum TLS version -->
                <key>NSTemporaryExceptionMinimumTLSVersion</key>
                <string>TLSv1.2</string>
            </dict>
        </dict>
    </dict>
1770 1771 1772
</dict>
```

1773
Whether you need to set the `NSExceptionRequiresForwardSecrecy` to `NO` depends on whether your TLS connection is using an allowed cipher suite. In certain cases, it will need to be set to `NO`. The `NSExceptionAllowsInsecureHTTPLoads` MUST be set to `YES` in order to allow the `SessionDelegate` to receive challenge callbacks. Once the challenge callbacks are being called, the `ServerTrustPolicyManager` will take over the server trust evaluation. You may also need to specify the `NSTemporaryExceptionMinimumTLSVersion` if you're trying to connect to a host that only supports TLS versions less than `1.2`.
1774 1775 1776

> It is recommended to always use valid certificates in production environments.

1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790
### Network Reachability

The `NetworkReachabilityManager` listens for reachability changes of hosts and addresses for both WWAN and WiFi network interfaces.

```swift
let manager = NetworkReachabilityManager(host: "www.apple.com")

manager?.listener = { status in
    print("Network Status Changed: \(status)")
}

manager?.startListening()
```

1791
> Make sure to remember to retain the `manager` in the above example, or no status changes will be reported.
1792
> Also, do not include the scheme in the `host` string or reachability won't function correctly.
1793

1794 1795
There are some important things to remember when using network reachability to determine what to do next.

1796 1797 1798 1799 1800 1801
- **Do NOT** use Reachability to determine if a network request should be sent.
    - You should **ALWAYS** send it.
- When Reachability is restored, use the event to retry failed network requests.
    - Even though the network requests may still fail, this is a good moment to retry them.
- The network reachability status can be useful for determining why a network request may have failed.
    - If a network request fails, it is more useful to tell the user that the network request failed due to being offline rather than a more technical error, such as "request timed out."
1802 1803 1804

> It is recommended to check out [WWDC 2012 Session 706, "Networking Best Practices"](https://developer.apple.com/videos/play/wwdc2012-706/) for more info.

1805 1806
---

1807
## Open Radars
1808

1809
The following radars have some effect on the current implementation of Alamofire.
1810

1811 1812 1813 1814
- [`rdar://21349340`](http://www.openradar.me/radar?id=5517037090635776) - Compiler throwing warning due to toll-free bridging issue in test case
- [`rdar://26761490`](http://www.openradar.me/radar?id=5010235949318144) - Swift string interpolation causing memory leak with common usage
- `rdar://26870455` - Background URL Session Configurations do not work in the simulator
- `rdar://26849668` - Some URLProtocol APIs do not properly handle `URLRequest`
1815

1816 1817 1818 1819 1820 1821
## FAQ

### What's the origin of the name Alamofire?

Alamofire is named after the [Alamo Fire flower](https://aggie-horticulture.tamu.edu/wildseed/alamofire.html), a hybrid variant of the Bluebonnet, the official state flower of Texas.

1822 1823 1824 1825 1826 1827
### What logic belongs in a Router vs. a Request Adapter?

Simple, static data such as paths, parameters and common headers belong in the `Router`. Dynamic data such as an `Authorization` header whose value can changed based on an authentication system belongs in a `RequestAdapter`.

The reason the dynamic data MUST be placed into the `RequestAdapter` is to support retry operations. When a `Request` is retried, the original request is not rebuilt meaning the `Router` will not be called again. The `RequestAdapter` is called again allowing the dynamic data to be updated on the original request before retrying the `Request`.

1828
---
M
Mattt Thompson 已提交
1829

M
Mattt Thompson 已提交
1830
## Credits
M
Mattt Thompson 已提交
1831

1832 1833 1834 1835 1836
Alamofire is owned and maintained by the [Alamofire Software Foundation](http://alamofire.org). You can follow them on Twitter at [@AlamofireSF](https://twitter.com/AlamofireSF) for project updates and releases.

### Security Disclosure

If you believe you have identified a security vulnerability with Alamofire, you should report it as soon as possible via email to security@alamofire.org. Please do not post it to a public issue tracker.
M
Mattt Thompson 已提交
1837

1838 1839 1840 1841
## Donations

The [ASF](https://github.com/Alamofire/Foundation#members) is looking to raise money to officially register as a federal non-profit organization. Registering will allow us members to gain some legal protections and also allow us to put donations to use, tax free. Donating to the ASF will enable us to:

1842 1843 1844 1845 1846
- Pay our legal fees to register as a federal non-profit organization
- Pay our yearly legal fees to keep the non-profit in good status
- Pay for our mail servers to help us stay on top of all questions and security issues
- Potentially fund test servers to make it easier for us to test the edge cases
- Potentially fund developers to work on one of our projects full-time
1847

1848
The community adoption of the ASF libraries has been amazing. We are greatly humbled by your enthusiasm around the projects, and want to continue to do everything we can to move the needle forward. With your continued support, the ASF will be able to improve its reach and also provide better legal safety for the core members. If you use any of our libraries for work, see if your employers would be interested in donating. Our initial goal is to raise $1000 to get all our legal ducks in a row and kickstart this campaign. Any amount you can donate today to help us reach our goal would be greatly appreciated.
1849 1850 1851

<a href='https://pledgie.com/campaigns/31474'><img alt='Click here to lend your support to: Alamofire Software Foundation and make a donation at pledgie.com !' src='https://pledgie.com/campaigns/31474.png?skin_name=chrome' border='0' ></a>

M
Mattt Thompson 已提交
1852 1853
## License

H
helloyako 已提交
1854
Alamofire is released under the MIT license. [See LICENSE](https://github.com/Alamofire/Alamofire/blob/master/LICENSE) for details.