Gente perdón que vuelva comentar esto que se publico hace dias atras, pero tengo el mismo problemas que algunos usuarios.. ya tengo mi API KEY, y tmb la reemplase  pero sigo teniendo el mismo problema, cuando hago clic en el icono, selecciono la imagen pero no me lo carga :\.
/*****************************
	* Add imgur upload function *
	*****************************/
	function upload(file) {
	/* Is the file an image? */
	if (!file || !file.type.match(/image.*/)) return;
 
	/* It is! */
	document.body.className = "uploading";
	var d = document.querySelector(".sceditor-button-imgur div");
	d.className = d.className + " imgurup";
 
	/* Lets build a FormData object*/
	var fd = new FormData(); // I wrote about it: https://hacks.mozilla.org/2011/01/how-to-develop-a-html5-image-uploader/
	fd.append("image", file); // Append the file
	var xhr = new XMLHttpRequest(); // Create the XHR (Cross-Domain XHR FTW!!!) Thank you sooooo much imgur.com
	xhr.open("POST", "https://api.imgur.com/3/image.json"); // Boooom!
	xhr.onload = function() {
	var code = '[img]' + JSON.parse(xhr.responseText).data.link + '[/img]';
	$('#message, #signature, textarea[name*="value"]').data('sceditor').insert(code);
	var d = document.querySelector(".sceditor-button-imgur div.imgurup");
	d.className = d.className - " imgurup";
	document.querySelector('input.imgur').remove();
	}
	// Ok, I don't handle the errors. An exercice for the reader.
	 xhr.setRequestHeader('Authorization', 'Client-ID 6912558e3jsaf09');
	/* And now, we send the formdata */
	xhr.send(fd);
	};
Tengo 1 solo editor, asiq el paso 2.2 no es
Estoy seguro q ese el 4.3
ya proble poniendo el API KEY de esa fotma y de esta tmb
// Ok, I don't handle the errors. An exercice for the reader.
	 xhr.setRequestHeader('Authorization', '6912558e3jsaf09');
No anda de ninguan, alguna ayudita?
Saludos y gracias de antemano!