URLSession
An object that coordinates a group of related, network data transfer tasks.
Declaration
class URLSessionMentioned in
- Pausing and resuming uploads
- Analyzing HTTP traffic with Instruments
- Processing URL session data task results with Combine
- Downloading files from websites
- Downloading files in the background
- Fetching website data into memory
- Uploading data to a website
- Improving network reliability using Multipath TCP
- Pausing and resuming downloads
- Performing manual server trust authentication
- Uploading streams of data
Overview
The URLSession class and related classes provide an API for downloading data from and uploading data to endpoints indicated by URLs. Your app can also use this API to perform background downloads when your app isn’t running or, in iOS, while your app is suspended. You can use the related URLSessionDelegate and URLSessionTaskDelegate to support authentication and receive events like redirection and task completion.
Your app creates one or more URLSession instances, each of which coordinates a group of related data-transfer tasks. For example, if you’re creating a web browser, your app might create one session per tab or window, or one session for interactive use and another for background downloads. Within each session, your app adds a series of tasks, each of which represents a request for a specific URL (following HTTP redirects, if necessary).
Types of URL sessions
The tasks within a given URL session share a common session configuration object, which defines connection behavior, like the maximum number of simultaneous connections to make to a single host, whether connections can use the cellular network, and so on.
URLSession has a singleton shared session (which doesn’t have a configuration object) for basic requests. It’s not as customizable as sessions you create, but it serves as a good starting point if you have very limited requirements. You access this session by calling the shared class method. For other kinds of sessions, you create a URLSession with one of three kinds of configurations:
A default session behaves much like the shared session, but lets you configure it. You can also assign a delegate to the default session to obtain data incrementally.
Ephemeral sessions are similar to shared sessions, but don’t write caches, cookies, or credentials to disk.
Background sessions let you perform uploads and downloads of content in the background while your app isn’t running.
See Creating a session configuration object in the URLSessionConfiguration class for details on creating each type of configuration.
Types of URL session tasks
Within a session, you create tasks that optionally upload data to a server and then retrieve data from the server either as a file on disk or as one or more NSData objects in memory. The URLSession API provides four types of tasks:
Data tasks send and receive data using NSData objects. Data tasks are intended for short, often interactive requests to a server.
Upload tasks are similar to data tasks, but they also send data (often in the form of a file), and support background uploads while the app isn’t running.
Download tasks retrieve data in the form of a file, and support background downloads and uploads while the app isn’t running.
WebSocket tasks exchange messages over TCP and TLS, using the WebSocket protocol defined in RFC 6455.
Using a session delegate
Tasks in a session also share a common delegate object. You implement this delegate to provide and obtain information when various events occur, including when:
Authentication fails.
Data arrives from the server.
Data becomes available for caching.
If you don’t need the features provided by a delegate, you can use this API without providing one by passing nil when you create a session.
Each task you create with the session calls back to the session’s delegate, using the methods defined in URLSessionTaskDelegate. You can also intercept these callbacks before they reach the session delegate by populating a separate delegate that’s specific to the task.
Asynchronicity and URL sessions
Like most networking APIs, the URLSession API is highly asynchronous. It returns data to your app in one of three ways, depending on the methods you call:
If you’re using Swift, you can use the methods marked with the
asynckeyword to perform common tasks. For example, data(from:delegate:) fetches data, while download(from:delegate:) downloads files. Your call point uses theawaitkeyword to suspend running until the transfer completes. You can also use the bytes(from:delegate:) method to receive data as an AsyncSequence. With this approach, you use thefor-await-insyntax to iterate over the data as your app receives it. The URL type also offers covenience methods to fetch bytes or lines from the shared URL session.In Swift or Objective-C, you can provide a completion handler block, which runs when the transfer completes.
In Swift or Objective-C, you can receive callbacks to a delegate method as the transfer progresses and immediately after it completes.
In addition to delivering this information to delegates, the URLSession provides status and progress properties. Query these properties if you need to make programmatic decisions based on the current state of the task (with the caveat that its state can change at any time).
Protocol support
The URLSession class natively supports the data, file, ftp, http, and https URL schemes, with transparent support for proxy servers and SOCKS gateways, as configured in the user’s system preferences.
URLSession supports the HTTP/1.1, HTTP/2, and HTTP/3 protocols. HTTP/2 support, as described by RFC 7540, requires a server that supports Application-Layer Protocol Negotiation (ALPN).
You can also add support for your own custom networking protocols and URL schemes (for your app’s private use) by subclassing URLProtocol.
App Transport Security (ATS)
iOS 9.0 and macOS 10.11 and later use App Transport Security (ATS) for all HTTP connections made with URLSession. ATS requires that HTTP connections use HTTPS (RFC 2818).
For more information, see NSAppTransportSecurity.
Foundation copying behavior
Session and task objects conform to the NSCopying protocol as follows:
When your app copies a session or task object, you get the same object back.
When your app copies a configuration object, you get a new copy you can independently modify.
Thread safety
The URL session API is thread-safe. You can freely create sessions and tasks in any thread context. When your delegate methods call the provided completion handlers, the work is automatically scheduled on the correct delegate queue.
Topics
Using the shared session
Creating a session
Working with a delegate
Performing asynchronous transfers
bytes(for:delegate:)bytes(from:delegate:)URLSession.AsyncBytesdata(for:delegate:)data(from:delegate:)data(for:)data(from:)download(for:delegate:)download(from:delegate:)download(resumeFrom:delegate:)upload(for:from:delegate:)upload(for:fromFile:delegate:)upload(for:from:)upload(for:fromFile:)URLSessionTaskDelegate
Adding data tasks to a session
dataTask(with:)dataTask(with:completionHandler:)dataTask(with:)dataTask(with:completionHandler:)URLSessionDataTaskURLSessionDataDelegate
Adding download tasks to a session
downloadTask(with:)downloadTask(with:completionHandler:)downloadTask(with:)downloadTask(with:completionHandler:)downloadTask(withResumeData:)downloadTask(withResumeData:completionHandler:)URLSessionDownloadTaskURLSessionDownloadDelegate
Adding upload tasks to a session
Building a resumable upload server with SwiftNIOuploadTask(with:from:)uploadTask(with:from:completionHandler:)uploadTask(with:fromFile:)uploadTask(with:fromFile:completionHandler:)uploadTask(withStreamedRequest:)uploadTask(withResumeData:)uploadTask(withResumeData:completionHandler:)URLSessionUploadTaskURLSessionDataDelegate
Adding stream tasks to a session
Adding WebSocket tasks to a session
webSocketTask(with:)webSocketTask(with:)webSocketTask(with:protocols:)URLSessionWebSocketTaskURLSessionWebSocketDelegate
Managing the session
finishTasksAndInvalidate()flush(completionHandler:)getTasksWithCompletionHandler(_:)getAllTasks(completionHandler:)invalidateAndCancel()reset(completionHandler:)sessionDescription
Handling errors
Performing tasks as a Combine Publisher
Processing URL session data task results with CombinedataTaskPublisher(for:)dataTaskPublisher(for:)URLSession.DataTaskPublisher