从 React 上传 Cloudinary 图像:包括 Cloudinary 未签名预设,但得到“使用未签名上传时必须指定上传预设”

IT技术 javascript reactjs fetch-api cloudinary
2021-05-01 22:24:33

我正在尝试基于此 codepen 示例构建一个简单的 Cloudinary 图像上传:https ://codepen.io/team/Cloudinary/pen/QgpyOK --

我已经将它转换为可以使用,fetch但即使我已经进入我的 Cloudinary 设置并创建了一个未签名的上传预设,我将其提供给标题,但我仍然收到错误

POST https://api.cloudinary.com/v1_1/myproject/upload 400 (Bad Request)

带有错误消息

Upload preset must be specified when using unsigned upload

我正在使用的代码如下

_callCloudinaryApi(file, method = 'post') {

    const config = {
      method
    }

    const cloudName = "myproject" // fictional project name here
    const unsignedUploadPreset = "mypreset" // fictional preset name here
    const url = `https://api.cloudinary.com/v1_1/${cloudName}/upload`;


    const fd = new FormData();
    fd.append('upload_preset', unsignedUploadPreset);
    fd.append('tags', 'browser_upload'); // Optional - add tag for image admin in Cloudinary
    fd.append('file', file);


    if (method !== 'get') {
      config.headers = {}
      config.headers['X-Requested-With'] = 'XMLHttpRequest'
    }

    return fetch(url, config)
      .then(res => res.json())
      .then(res => {
       console.log(res)
        return res;
      })
  }

谁能帮我确定可能是什么问题?非常感谢!

3个回答

您可以尝试以下操作-

    var data = new FormData();
    data.append('upload_preset', '<upload_preset>');
    data.append('file', file);
    data.append('cloud_name', '<cloud_name>');

    const config = {
        method: "POST",
        body: data 
    };

   var imgurl = "https://api.cloudinary.com/v1_1/<cloud_name>/image/upload";

   fetch(imgurl, config)
    .then(responseData => {
              console.log(JSON.stringify(responseData, null, 4));
    })

我也有这个错误,去https://cloudinary.com/console/settings/upload,你确实有一个Upload presets,确保有一个Signing Mode转向Unsigned

就安全性而言,这可能不是最好的做法(我猜更好的方法是进行身份验证)。

顺便说一句,我通过 Devtools 网络选项卡找到了有关 400 错误的线索。

我遇到了同样的问题,希望这个解决方案可以帮助其他人

uploadFile = async (e) => {
    const files = e.target.files;
    const data = new FormData();
    data.append('file', files[0]);
    data.append('upload_preset', 'PRESET_NAME');
    const res = await fetch('https://api.cloudinary.com/v1_1/{YOUR_ACOUNT_USER}/image/upload', {
      method: 'POST',
      body: data
    });
    const file = await res.json();
    console.log(file);
    this.setState({
      image: file.secure_url
    })
  }