I am trying to add an Authorization header to my adapter\'s request after the adapter has been initialized and used. I can add headers in a static way at the t
Authorization
You should be able to use $.ajaxPrefilter to add custom headers (or params).
$.ajaxPrefilter
See: http://api.jquery.com/jQuery.ajaxPrefilter/
Ember.$.ajaxPrefilter(function( options, oriOptions, jqXHR ) { var auth= "Basic " + hash; jqXHR.setRequestHeader("Authorization", auth); });