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)")
     }