<?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: Display file upload progress in javascript api in Discuss Dropbox Developer &amp; API</title>
    <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Display-file-upload-progress-in-javascript-api/m-p/411494#M1138</link>
    <description>&lt;P&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/10"&gt;@Greg-DB&lt;/a&gt;&amp;nbsp; Yes, I am using the same example, but there is no progress bar code in the example.&lt;/P&gt;</description>
    <pubDate>Sat, 18 Apr 2020 06:11:13 GMT</pubDate>
    <dc:creator>h_vohra</dc:creator>
    <dc:date>2020-04-18T06:11:13Z</dc:date>
    <item>
      <title>Display file upload progress in javascript api</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Display-file-upload-progress-in-javascript-api/m-p/409377#M1111</link>
      <description>&lt;P&gt;I am using the Javascript API to upload my files in dropbox on my website. The files are getting uploaded properly, but I am unable to display the progress of the upload. I have to wait for a longer time on the page for bigger files till the &lt;STRONG&gt;File Uploaded&lt;/STRONG&gt; text gets displayed.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Apr 2020 09:50:07 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Display-file-upload-progress-in-javascript-api/m-p/409377#M1111</guid>
      <dc:creator>h_vohra</dc:creator>
      <dc:date>2020-04-13T09:50:07Z</dc:date>
    </item>
    <item>
      <title>Re: Display file upload progress in javascript api</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Display-file-upload-progress-in-javascript-api/m-p/409496#M1113</link>
      <description>&lt;P&gt;The Dropbox API v2 JavaScript SDK does not offer a way to check the progress on a transfer unfortunately, e.g., for filesUpload. I'll pass this along as a feature request to the team but I can't promise if or when that might be implemented.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you're using "upload sessions" though, where you upload files in pieces, you can keep track of how much you've uploaded between each piece:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://dropbox.github.io/dropbox-sdk-js/Dropbox.html#filesUploadSessionStart" target="_self"&gt;https://dropbox.github.io/dropbox-sdk-js/Dropbox.html#filesUploadSessionStart&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://dropbox.github.io/dropbox-sdk-js/Dropbox.html#filesUploadSessionAppendV2" target="_self"&gt;https://dropbox.github.io/dropbox-sdk-js/Dropbox.html#filesUploadSessionAppendV2 &lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://dropbox.github.io/dropbox-sdk-js/Dropbox.html#filesUploadSessionFinish" target="_self"&gt;https://dropbox.github.io/dropbox-sdk-js/Dropbox.html#filesUploadSessionFinish&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you're not already using that, it may be a significant amount or work to switch to it and implement your progress tracking.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Apr 2020 15:02:56 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Display-file-upload-progress-in-javascript-api/m-p/409496#M1113</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2020-04-13T15:02:56Z</dc:date>
    </item>
    <item>
      <title>Re: Display file upload progress in javascript api</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Display-file-upload-progress-in-javascript-api/m-p/409718#M1116</link>
      <description>&lt;P&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/10"&gt;@Greg-DB&lt;/a&gt;&amp;nbsp; Thank you for the response. Currently, I am using the filesUpload function. Can you please share link for a working example of fileUploadSession.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Apr 2020 04:47:49 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Display-file-upload-progress-in-javascript-api/m-p/409718#M1116</guid>
      <dc:creator>h_vohra</dc:creator>
      <dc:date>2020-04-14T04:47:49Z</dc:date>
    </item>
    <item>
      <title>Re: Display file upload progress in javascript api</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Display-file-upload-progress-in-javascript-api/m-p/409871#M1117</link>
      <description>&lt;P&gt;We have an example of using upload sessions in the JavaScript SDK here:&amp;nbsp;&lt;A href="https://github.com/dropbox/dropbox-sdk-js/blob/b2353edeb221ec17b8e70a1d8fd4799e2f1f031d/examples/javascript/upload/index.html#L63" target="_blank"&gt;https://github.com/dropbox/dropbox-sdk-js/blob/b2353edeb221ec17b8e70a1d8fd4799e2f1f031d/examples/javascript/upload/index.html#L63&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Apr 2020 14:11:37 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Display-file-upload-progress-in-javascript-api/m-p/409871#M1117</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2020-04-14T14:11:37Z</dc:date>
    </item>
    <item>
      <title>Re: Display file upload progress in javascript api</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Display-file-upload-progress-in-javascript-api/m-p/411494#M1138</link>
      <description>&lt;P&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/10"&gt;@Greg-DB&lt;/a&gt;&amp;nbsp; Yes, I am using the same example, but there is no progress bar code in the example.&lt;/P&gt;</description>
      <pubDate>Sat, 18 Apr 2020 06:11:13 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Display-file-upload-progress-in-javascript-api/m-p/411494#M1138</guid>
      <dc:creator>h_vohra</dc:creator>
      <dc:date>2020-04-18T06:11:13Z</dc:date>
    </item>
    <item>
      <title>Re: Display file upload progress in javascript api</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Display-file-upload-progress-in-javascript-api/m-p/412156#M1144</link>
      <description>&lt;P&gt;Yes, that is just an example of using the upload sessions methods themselves. It doesn't have a progress bar implemented, so you'd need to implement it in your code and hook up your own progress bar. For example, between each&amp;nbsp;filesUploadSessionStart/filesUploadSessionAppendV2/filesUploadSessionFinish call, you could update the state of your progress bar based on the current 'offset' value.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Apr 2020 15:42:11 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Display-file-upload-progress-in-javascript-api/m-p/412156#M1144</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2020-04-20T15:42:11Z</dc:date>
    </item>
  </channel>
</rss>

