Upload preset must be whitelisted for unsigned uploads - question
See original GitHub issuethe following error hola que tal greetings to the community have the following questions when saving an image appears Cloudinary
` $scope.uploadPic = function(file) { Upload.upload({ url: “https://api.cloudinary.com/v1_1/” + cloudinary.config().cloud_name + “/image/upload”, data: { upload_preset: cloudinary.config().upload_preset, tags: ‘myphotoalbum’, public_id: ‘dwdw’, context: ‘photo=’ + file.name, file: file } }).progress(function(e) { console.log(e); }).success(function(data, status, headers, config) { console.log(data, status, headers, config); }).error(function(data, status, headers, config) { console.log(data, status, headers, config); });
};`
and reestablished the Upload presets for testing and this error keeps coming. How I can avoid this error?
Issue Analytics
- State:
- Created 8 years ago
- Comments:7
Top GitHub Comments
As long as you use unsigned uploads, you should make sure that the upload preset you’ve defined is unsigned. This can be done via your account’s Upload settings page, click “Edit” next to your upload preset, and change its “Mode” to “Unsigned”.
Hi,
i tried Unsigned = true parameter but it does not help me.
i will raise a support ticket.
thanks, Srini.
On Tue, Nov 20, 2018, 7:01 PM Marissa Masangcay <notifications@github.com wrote: