使用javascript将图像上传到dropbox公用文件夹

时间:2016-06-30 05:05:33

标签: javascript ajax dropbox-api

我尝试使用javascript将图片上传到我的投递箱公用文件夹。它只上传带有扩展名的图像名称 - 当我在dropbox文件夹中打开图像时,图像不会出现。 这是我的代码:

 reader = new FileReader({
    'blob': true
   });  

reader.onloadend = function () {
    var rawBytes = reader.result;

    $.ajax({
    url:'https://apicontent.dropbox.com/1/files_put/dropbox/Public/TestFolder/"' + evt.target.files[0].name + '"?access_token=MYTOKEN',

        type: 'POST',
        dataType: 'json',
        data: rawBytes,

        success: function (data) {
            console.log('file uploaded successfully');
        },
        error: function (data) {
            console.log(data);
        }
    });

 }
reader.readAsArrayBuffer(evt.target.files[0]);

0 个答案:

没有答案