ExtJS.Ajax - Authentication?
- by lajuette
Is there a way to send requests using ExtJS.Ajax to endpoints that require authentication (e.g. Basic Authentication)? Adding an Authorization-Header won't work.
headers : { Authorization : 'Basic ' + Ext.util.base64.encode(username + ':' + password) }