I ran into this issue, I would like to share the solution with the community, I think it can be helpful. ``` CKEDITOR.on( 'instanceReady', function( evt ) { evt.editor.on( 'fileUploadRequest', function( evt ) { console.log('fileUploadRequest by CKEditor',this.file); var xhr = evt.data.fileLoader.xhr; xhr.setRequestHeader( 'Authorization', 'Bearer ' + $localStorage.token ); } ); } ); ```
I ran into this issue, I would like to share the solution with the community, I think it can be helpful.