cloudinary / cloudinary/cloudinary_gem

Image upload error in Safari: Failed to load resource: Request header field Authorization is not allowed by Access-Control-Allow-Headers.

Offen
#431 1 Kommentar 0 Reaktionen 2 zugewiesene Personen Beansprucht von @patrick-tolosa Auf GitHub ansehen
Vorherrschende Sprache
Ruby
Sterne
420
Forks
285
PR-Merge-Kennzahlen
Keine gemergten PRs in 30 T.

Beschreibung

Hi,
I'm getting an error `Failed to load resource: Request header field Authorization is not allowed by Access-Control-Allow-Headers.` in Safari, but not in Chrome using the following code for javascript upload. Is there anyway to fix this?

```
<%= cl_image_upload_tag(:image_id, :upload_preset => "logos", :public_id => "#{@account.id.to_s}") %>

<%= cloudinary_js_config %>

$('.progress').hide();

$(document).ready(function() {
if($.fn.cloudinary_fileupload !== undefined) {
$("input.cloudinary-fileupload[type=file]").cloudinary_fileupload({
maxFileSize: 10000000,
acceptFileTypes: /(\.|\/)(jpe?g|png)$/i
});
}

$('.cloudinary-fileupload').bind('cloudinarydone', function(e, data) {
$('.logo-thumbnail').hide();
$('.preview').html(
$.cloudinary.image(data.result.public_id,
{ format: data.result.format, version: data.result.version,
crop: 'fit', width: 500, height: 200 })
);
$('.image_public_id').val(data.result.public_id);
return true;
});

$('.cloudinary-fileupload').bind('cloudinaryprogress', function(e, data) {
$('.progress').show();
$('.progress-bar').css('width', Math.round((data.loaded * 100.0) / data.total) + '%');
});

});

```

Beitragsleitfaden

Beitragsleitfaden öffnen

Bewertung

Dieses Issue wurde noch nicht bewertet.

Neue Issues direkt in Ihr Postfach

Eine kurze Übersicht über anfängerfreundliche GitHub-Issues.