Chained Response Handlers

suggest change
Alamofire.request(.GET, "https://httpbin.org/get")
     .validate()
     .responseString { response in
         print("Response String: \(response.result.value)")
     }
     .responseJSON { response in
         print("Response JSON: \(response.result.value)")
     }

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents