Xcode forced me to update some old swift 2.3 syntax to 3.0. Alamofire is 4.0.1. When trying to build a project it fails with error for extra argument in call.
Alamofire.request(url, .GET, parameters: ["part":"snippet,contentDetails", "key": API_KEY,"maxResults":50, "channelId":channelId], encoding: ParameterEncoding.URL, headers: nil).responseJSON { (response) in
How do i fix this issue. It shows up in over 6 files in project. Almost identical error.