I\'m using Alamofire 3 and encountered this:
[Result]: FAILURE: Error Domain=NSURLErrorDomain Code=-1007 \"too many HTTP redirects\" UserInfo={NSUnderlyingError=
it turns out that in iOS 9, there's this App Transport Security (ATS) to enforce best practices in secure connections between an app and its back end. Hence the redirect issues.
by adding Alamofire.Manager.sharedInstance.delegate.taskWillPerformHTTPRedirection = nil
everything works like magic XD
Cheers
Des