<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Uploading large files directly from web application. in Discuss Dropbox Developer &amp; API</title>
    <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Uploading-large-files-directly-from-web-application/m-p/410982#M1127</link>
    <description>&lt;P&gt;We came up with a solution.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Upload the files to an App folder, then make a final request to make a server side call to move the file to a secure location within Dropbox before removing the old one and thus keeping the app folder empty.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 16 Apr 2020 21:33:11 GMT</pubDate>
    <dc:creator>knoppys</dc:creator>
    <dc:date>2020-04-16T21:33:11Z</dc:date>
    <item>
      <title>Uploading large files directly from web application.</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Uploading-large-files-directly-from-web-application/m-p/405449#M1073</link>
      <description>&lt;P&gt;Hi Guys&lt;/P&gt;
&lt;P&gt;We have a simple form on our website with a fileupload UI using Dropzone.js.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When a file is dropped I use an ajax callback to fetch a URL from /get_temp_upload_link, send this back to Dropzone and the file is streamed directly to Dropbox. We do not want to handle the file upload server side as this will impact the site, we need the files straight to dropbox from the form.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From what Ive read there seems to be a file size limit using temp upload links of a few hundred MB, some of these files might be upwards of 60GB.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Dropzone has a file chunking abilty which i haven't tried yet. If its any good I might try to use this with the temp_upload endpoint. If this doesnt work though, how can I stream these large files straight from the browser without passing the access token to the client?&lt;/P&gt;</description>
      <pubDate>Tue, 31 Mar 2020 10:32:39 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Uploading-large-files-directly-from-web-application/m-p/405449#M1073</guid>
      <dc:creator>AlexSeniorDev</dc:creator>
      <dc:date>2020-03-31T10:32:39Z</dc:date>
    </item>
    <item>
      <title>Re: Uploading large files directly from web application.</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Uploading-large-files-directly-from-web-application/m-p/405520#M1074</link>
      <description>&lt;P&gt;[Cross-linking for reference:&amp;nbsp;&lt;A href="https://stackoverflow.com/questions/60952157/using-dropzone-to-upload-files-to-dropbox-via-upload-sessions" target="_blank"&gt;https://stackoverflow.com/questions/60952157/using-dropzone-to-upload-files-to-dropbox-via-upload-sessions&lt;/A&gt;&amp;nbsp;]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Unfortunately, there isn't a good solution here. The&amp;nbsp;Dropbox API offers the&amp;nbsp;&lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#files-get_temporary_upload_link" target="_self"&gt;/2/files/get_temporary_upload_link&lt;/A&gt; functionality to enable client-side uploads without an access token like you mentioned, but it has the the same file size limit as &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#files-upload" target="_self"&gt;/2/files/upload&lt;/A&gt; itself (officially 150 MB). Regardless of what kind of capability Dropzone has, the&amp;nbsp;Dropbox API itself doesn't an equivalent way to upload larger files without having the access token client-side.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'll pass this along as a feature request for a good way to do this,&amp;nbsp;but I can't promise if or when that might be implemented.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 31 Mar 2020 15:14:29 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Uploading-large-files-directly-from-web-application/m-p/405520#M1074</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2020-03-31T15:14:29Z</dc:date>
    </item>
    <item>
      <title>Re: Uploading large files directly from web application.</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Uploading-large-files-directly-from-web-application/m-p/405525#M1075</link>
      <description>&lt;P&gt;I can see that Dropbox has an endpoint for upload sessions. Allowing files to be uploaded in chunks.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Its a shame that this functionality of accepting parts of a file and rebuilding it at the other end cant be included in the get_temp_upload_link endpoint as well.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your reply.&lt;/P&gt;</description>
      <pubDate>Tue, 31 Mar 2020 15:26:25 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Uploading-large-files-directly-from-web-application/m-p/405525#M1075</guid>
      <dc:creator>AlexSeniorDev</dc:creator>
      <dc:date>2020-03-31T15:26:25Z</dc:date>
    </item>
    <item>
      <title>Re: Uploading large files directly from web application.</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Uploading-large-files-directly-from-web-application/m-p/410982#M1127</link>
      <description>&lt;P&gt;We came up with a solution.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Upload the files to an App folder, then make a final request to make a server side call to move the file to a secure location within Dropbox before removing the old one and thus keeping the app folder empty.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Apr 2020 21:33:11 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Uploading-large-files-directly-from-web-application/m-p/410982#M1127</guid>
      <dc:creator>knoppys</dc:creator>
      <dc:date>2020-04-16T21:33:11Z</dc:date>
    </item>
    <item>
      <title>Re: Uploading large files directly from web application.</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Uploading-large-files-directly-from-web-application/m-p/411238#M1130</link>
      <description>&lt;P&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1281941"&gt;@knoppys&lt;/a&gt;&amp;nbsp;For reference, if your solution involves exposing the app folder access token client-side, we still wouldn't&amp;nbsp;recommend this. Even if you remove the files from the app folder as soon as possible, someone with the access token could read any files while they do exist, or even after they're deleted by restoring them via&amp;nbsp;&lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#files-restore" target="_self"&gt;/2/files/restore.&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Apr 2020 14:43:59 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Uploading-large-files-directly-from-web-application/m-p/411238#M1130</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2020-04-17T14:43:59Z</dc:date>
    </item>
    <item>
      <title>Re: Uploading large files directly from web application.</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Uploading-large-files-directly-from-web-application/m-p/411352#M1134</link>
      <description>&lt;P&gt;Would users still be able to restore the file even if I used the delete_permenantly end point?&lt;/P&gt;</description>
      <pubDate>Fri, 17 Apr 2020 19:35:57 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Uploading-large-files-directly-from-web-application/m-p/411352#M1134</guid>
      <dc:creator>AlexSeniorDev</dc:creator>
      <dc:date>2020-04-17T19:35:57Z</dc:date>
    </item>
    <item>
      <title>Re: Uploading large files directly from web application.</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Uploading-large-files-directly-from-web-application/m-p/411360#M1135</link>
      <description>&lt;P&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1280045"&gt;@AlexSeniorDev&lt;/a&gt;&amp;nbsp;No, files can't be restored after being permanently deleted, such as via&amp;nbsp;&lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#files-permanently_delete" target="_self"&gt;/2/files/permanently_delete&lt;/A&gt;. Note that&amp;nbsp;&lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#files-permanently_delete" target="_self"&gt;/2/files/permanently_delete&lt;/A&gt;&amp;nbsp;is only available to&amp;nbsp;Dropbox Business API apps though.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Apr 2020 19:59:38 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Uploading-large-files-directly-from-web-application/m-p/411360#M1135</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2020-04-17T19:59:38Z</dc:date>
    </item>
    <item>
      <title>Re: Uploading large files directly from web application.</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Uploading-large-files-directly-from-web-application/m-p/411378#M1136</link>
      <description>&lt;P&gt;Good to know, thanks Greg.&amp;nbsp;&lt;BR /&gt;I know we already have a Business account so this should work fine.&amp;nbsp;&lt;BR /&gt;Unless you know of any other way to post to the upload session endpoints from the client without including the access token.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Apr 2020 20:39:10 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Uploading-large-files-directly-from-web-application/m-p/411378#M1136</guid>
      <dc:creator>AlexSeniorDev</dc:creator>
      <dc:date>2020-04-17T20:39:10Z</dc:date>
    </item>
  </channel>
</rss>

