After updating to Alamofire 4 and updating my code to Swift 3, all of my requests are not working for some reason. The variables that I am trying to utilize are highlighted
I had similar problem, for me solution was to change it as below
let urladdress = "https://api.github.com/users" Alamofire.request(urladdress).responseJSON(completionHandler: { response in print(response) })