As of Jan. 17, 2023, AFNetworking is deprecated and there will be no further releases. This repo will remain online in perpetuity as an archive. There are a couple options for continued AFNetworking use:
Copy AFNetworking into your project and compile it directly. This gives you full control over the code.
Fork AFNetworking and use the fork in your dependency manager. There will be no official forks but anyone can fork at any time and can even publish those forks under a different name, in accordance with AFNetworking’s license.
Moving forward, Alamofire is the suggested migration path for networking in modern Swift. Anyone who needs help making that migration is welcome to ask on StackOverflow and tag alamofire and afnetworking, or open a discussion on Alamofire’s GitHub Discussions regarding any migration issues or missing features.
AFNetworking is a delightful networking library for iOS, macOS, watchOS, and tvOS. It’s built on top of the Foundation URL Loading System, extending the powerful high-level networking abstractions built into Cocoa. It has a modular architecture with well-designed, feature-rich APIs that are a joy to use.
Perhaps the most important feature of all, however, is the amazing community of developers who use and contribute to AFNetworking every day. AFNetworking powers some of the most popular and critically-acclaimed apps on the iPhone, iPad, and Mac.
Note: AFNetworking’s Swift package does not include it’s UIKit extensions.
Installation with Carthage
Carthage is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks. To integrate AFNetworking, add the following to your Cartfile.
github "AFNetworking/AFNetworking" ~> 4.0
Requirements
AFNetworking Version
Minimum iOS Target
Minimum macOS Target
Minimum watchOS Target
Minimum tvOS Target
Notes
4.x
iOS 9
macOS 10.10
watchOS 2.0
tvOS 9.0
Xcode 11+ is required.
3.x
iOS 7
OS X 10.9
watchOS 2.0
tvOS 9.0
Xcode 7+ is required. NSURLConnectionOperation support has been removed.
2.6 -> 2.6.3
iOS 7
OS X 10.9
watchOS 2.0
n/a
Xcode 7+ is required.
2.0 -> 2.5.4
iOS 6
OS X 10.8
n/a
n/a
Xcode 5+ is required. NSURLSession subspec requires iOS 7 or OS X 10.9.
Programming in Swift? Try Alamofire for a more conventional set of APIs.
Architecture
NSURLSession
AFURLSessionManager
AFHTTPSessionManager
Serialization
<AFURLRequestSerialization>
AFHTTPRequestSerializer
AFJSONRequestSerializer
AFPropertyListRequestSerializer
<AFURLResponseSerialization>
AFHTTPResponseSerializer
AFJSONResponseSerializer
AFXMLParserResponseSerializer
AFXMLDocumentResponseSerializer(macOS)
AFPropertyListResponseSerializer
AFImageResponseSerializer
AFCompoundResponseSerializer
Additional Functionality
AFSecurityPolicy
AFNetworkReachabilityManager
Usage
AFURLSessionManager
AFURLSessionManager creates and manages an NSURLSession object based on a specified NSURLSessionConfiguration object, which conforms to <NSURLSessionTaskDelegate>, <NSURLSessionDataDelegate>, <NSURLSessionDownloadDelegate>, and <NSURLSessionDelegate>.
POST http://example.com/
Content-Type: application/json
{"foo": "bar", "baz": [1,2,3]}
Network Reachability Manager
AFNetworkReachabilityManager monitors the reachability of domains, and addresses for both WWAN and WiFi network interfaces.
Do not use Reachability to determine if the original request should be sent.
You should try to send it.
You can use Reachability to determine when a request should be automatically retried.
Although it may still fail, a Reachability notification that the connectivity is available is a good time to retry something.
Network reachability is a useful tool for determining why a request might have failed.
After a network request has failed, telling the user they’re offline is better than giving them a more technical but accurate error, such as “request timed out.”
AFSecurityPolicy evaluates server trust against pinned X.509 certificates and public keys over secure connections.
Adding pinned SSL certificates to your app helps prevent man-in-the-middle attacks and other vulnerabilities. Applications dealing with sensitive customer data or financial information are strongly encouraged to route all communication over an HTTPS connection with SSL pinning configured and enabled.
Allowing Invalid SSL Certificates
AFHTTPSessionManager *manager = [AFHTTPSessionManager manager];
manager.securityPolicy.allowInvalidCertificates = YES; // not recommended for production
Unit Tests
AFNetworking includes a suite of unit tests within the Tests subdirectory. These tests can be run simply be executed the test action on the platform framework you would like to test.
If you believe you have identified a security vulnerability with AFNetworking, you should report it as soon as possible via email to security@alamofire.org. Please do not post it to a public issue tracker.
License
AFNetworking is released under the MIT license. See LICENSE for details.
AFNetworking is Deprecated
As of Jan. 17, 2023, AFNetworking is deprecated and there will be no further releases. This repo will remain online in perpetuity as an archive. There are a couple options for continued AFNetworking use:
Moving forward, Alamofire is the suggested migration path for networking in modern Swift. Anyone who needs help making that migration is welcome to ask on StackOverflow and tag
alamofireandafnetworking, or open a discussion on Alamofire’s GitHub Discussions regarding any migration issues or missing features.AFNetworking is a delightful networking library for iOS, macOS, watchOS, and tvOS. It’s built on top of the Foundation URL Loading System, extending the powerful high-level networking abstractions built into Cocoa. It has a modular architecture with well-designed, feature-rich APIs that are a joy to use.
Perhaps the most important feature of all, however, is the amazing community of developers who use and contribute to AFNetworking every day. AFNetworking powers some of the most popular and critically-acclaimed apps on the iPhone, iPad, and Mac.
How To Get Started
Communication
Installation
AFNetworking supports multiple methods for installing the library in a project.
Installation with CocoaPods
To integrate AFNetworking into your Xcode project using CocoaPods, specify it in your
Podfile:Installation with Swift Package Manager
Once you have your Swift package set up, adding AFNetworking as a dependency is as easy as adding it to the
dependenciesvalue of yourPackage.swift.Installation with Carthage
Carthage is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks. To integrate AFNetworking, add the following to your
Cartfile.Requirements
NSURLConnectionOperationsupport has been removed.NSURLSessionsubspec requires iOS 7 or OS X 10.9.(macOS projects must support 64-bit with modern Cocoa runtime).
Architecture
NSURLSession
AFURLSessionManagerAFHTTPSessionManagerSerialization
<AFURLRequestSerialization>AFHTTPRequestSerializerAFJSONRequestSerializerAFPropertyListRequestSerializer<AFURLResponseSerialization>AFHTTPResponseSerializerAFJSONResponseSerializerAFXMLParserResponseSerializerAFXMLDocumentResponseSerializer(macOS)AFPropertyListResponseSerializerAFImageResponseSerializerAFCompoundResponseSerializerAdditional Functionality
AFSecurityPolicyAFNetworkReachabilityManagerUsage
AFURLSessionManager
AFURLSessionManagercreates and manages anNSURLSessionobject based on a specifiedNSURLSessionConfigurationobject, which conforms to<NSURLSessionTaskDelegate>,<NSURLSessionDataDelegate>,<NSURLSessionDownloadDelegate>, and<NSURLSessionDelegate>.Creating a Download Task
Creating an Upload Task
Creating an Upload Task for a Multi-Part Request, with Progress
Creating a Data Task
Request Serialization
Request serializers create requests from URL strings, encoding parameters as either a query string or HTTP body.
Query String Parameter Encoding
URL Form Parameter Encoding
JSON Parameter Encoding
Network Reachability Manager
AFNetworkReachabilityManagermonitors the reachability of domains, and addresses for both WWAN and WiFi network interfaces.See also WWDC 2012 session 706, “Networking Best Practices.”.
Shared Network Reachability
Security Policy
AFSecurityPolicyevaluates server trust against pinned X.509 certificates and public keys over secure connections.Adding pinned SSL certificates to your app helps prevent man-in-the-middle attacks and other vulnerabilities. Applications dealing with sensitive customer data or financial information are strongly encouraged to route all communication over an HTTPS connection with SSL pinning configured and enabled.
Allowing Invalid SSL Certificates
Unit Tests
AFNetworking includes a suite of unit tests within the Tests subdirectory. These tests can be run simply be executed the test action on the platform framework you would like to test.
Credits
AFNetworking is owned and maintained by the Alamofire Software Foundation.
AFNetworking was originally created by Scott Raymond and Mattt Thompson in the development of Gowalla for iPhone.
AFNetworking’s logo was designed by Alan Defibaugh.
And most of all, thanks to AFNetworking’s growing list of contributors.
Security Disclosure
If you believe you have identified a security vulnerability with AFNetworking, you should report it as soon as possible via email to security@alamofire.org. Please do not post it to a public issue tracker.
License
AFNetworking is released under the MIT license. See LICENSE for details.