I tried to add custom header with this:
let manager = Manager.sharedInstance
manager.session.configuration.HTTPAdditionalHeaders = [
\"Authorization\": \
I don't know where you do that but my AlomoFire requests look like :
Alamofire.request(.GET, urlPath, parameters: parameters, headers: ["X-API-KEY": apiKey, "Content-type application":"json", "Accept application" : "json"]).responseJSON() { (req,res, data, error) in //blah blah }
My guess is that you can put your header information into that headers array