Top "Alamofire" questions

Alamofire is an HTTP networking library written in Swift.

Cancel a request Alamofire

I am sending a request which is triggered based on timer. But if I press the back button the request …

ios xcode swift3 http-post alamofire
Get image data with Alamofire request

I've updated my code to Swift 3 and am having trouble with the migration to Alamofire 4.0. I've used the Alamofire migration …

ios swift alamofire alamofireimage
Alamofire with a self-signed certificate / ServerTrustPolicy

I want to use Alamofire to communicate with my server over a https connection with a self signed certificate. My …

ios swift https alamofire
How to pause/resume/cancel my download request in Alamofire

I am downloading a file using Alamofire download with progress but i have no idea how to pause / resume / cancel …

ios swift alamofire
NSURLSession concurrent requests with Alamofire

I'm experiencing some strange behaviour with my test app. I've about 50 simultaneous GET requests that I send to the same …

swift concurrency nsurlsession alamofire nsurlsessionconfiguration
How to retrieve Alamofire response header for a request

how can I retrieve response headers for a request? Below is a request I make. Alamofire.request(.GET, requestUrl, parameters:…

swift alamofire
Using FORM DATA with Alamofire

I am using alamofire for some time now, but I have never used a form data Post. Now I am …

swift2 alamofire form-data
Converting JSON from AlamoFire/SwiftyJSON to Dictionary in Swift/Xcode

My head is going to explode :) - I've been trying to get a JSON String from my server to a …

xcode swift alamofire swifty-json
Unit Testing HTTP traffic in Alamofire app

I'm struggling a bit to figure out how to best test an app that uses Alamofire to help sync with …

unit-testing alamofire
How to read response cookies using Alamofire

I am trying to read the response cookies for a post request, as done by Postman below The way I …

swift cookies alamofire