我想知道是否可以仅使用链接将文件上传到Dropbox,而无需将文件下载到服务器。使用服务器端的nodejs或客户端的javascript。我正在使用的方法现在要求我下载文件然后缓冲它以便在之后发送。
eq = http.get('http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.0/jquery.js', function(res) {
var chunks = [];
res.on('data', function(chunk) {
console.log('telechargement');
chunks.push(chunk);
});
res.on('end', function() {
client.put('adaptation/jsfile.js', jsfile, function(status, reply) {
console.log(reply);
});
});
答案 0 :(得分:0)
Core API中没有任何方法可以通过网址将文件保存到Dropbox。
但是,用户可以通过Saver以https://www.dropbox.com/developers/dropins/saver的方式进行交互式访问。也许这符合您的需求。