<?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 Download Files From Dropbox Using Ruby in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Download-Files-From-Dropbox-Using-Ruby/m-p/265063#M15541</link>
    <description>&lt;P&gt;Hi ,&lt;BR /&gt;&lt;BR /&gt;I have xlsx sheet in my dropbox . It have 10 columns and 220 rows .&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;My databse table also have 10 columns,&amp;nbsp; need to feed the xlsx sheet values to table .&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;Future i will add addtional rows in the same sheet .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a button called Sync Data in my applica tion . Whenever i click that button need to verify the sheet(new records) and need to update in DB as well .&lt;/P&gt;</description>
    <pubDate>Wed, 29 May 2019 09:15:22 GMT</pubDate>
    <dc:creator>ROR</dc:creator>
    <dc:date>2019-05-29T09:15:22Z</dc:date>
    <item>
      <title>Download Files From Dropbox Using Ruby</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Download-Files-From-Dropbox-Using-Ruby/m-p/265063#M15541</link>
      <description>&lt;P&gt;Hi ,&lt;BR /&gt;&lt;BR /&gt;I have xlsx sheet in my dropbox . It have 10 columns and 220 rows .&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;My databse table also have 10 columns,&amp;nbsp; need to feed the xlsx sheet values to table .&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;Future i will add addtional rows in the same sheet .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a button called Sync Data in my applica tion . Whenever i click that button need to verify the sheet(new records) and need to update in DB as well .&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 09:15:22 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Download-Files-From-Dropbox-Using-Ruby/m-p/265063#M15541</guid>
      <dc:creator>ROR</dc:creator>
      <dc:date>2019-05-29T09:15:22Z</dc:date>
    </item>
    <item>
      <title>Re: Download Files From Dropbox Using Ruby</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Download-Files-From-Dropbox-Using-Ruby/m-p/265138#M15551</link>
      <description>The Dropbox API does offer the ability to download files. Dropbox doesn't have an API v2 SDK for Ruby in particular, but you can use the HTTPS endpoints directly. For example, to download a file, you would use /2/files/download:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#files-download" target="_blank"&gt;https://www.dropbox.com/developers/documentation/http/documentation#files-download&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Or, you can use a third party library:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://www.dropbox.com/developers/documentation/communitysdks" target="_blank"&gt;https://www.dropbox.com/developers/documentation/communitysdks&lt;/A&gt;</description>
      <pubDate>Thu, 15 Feb 2018 14:39:11 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Download-Files-From-Dropbox-Using-Ruby/m-p/265138#M15551</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2018-02-15T14:39:11Z</dc:date>
    </item>
    <item>
      <title>Re: Download Files From Dropbox Using Ruby</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Download-Files-From-Dropbox-Using-Ruby/m-p/285334#M17470</link>
      <description>&lt;P&gt;Hi Greg,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I followed the documentation ,i created the app inside the dropbox and got the access token . But the problem is,each time dropbox create new access token keys . Then how can i integrate it with my appication and fetch the files .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have set of folders in my dropbox , in frequent time interval i want read the folder and need to download the files and save into database . How can i do that ? . I am using ruby on rails&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jul 2018 05:08:18 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Download-Files-From-Dropbox-Using-Ruby/m-p/285334#M17470</guid>
      <dc:creator>ROR</dc:creator>
      <dc:date>2018-07-19T05:08:18Z</dc:date>
    </item>
    <item>
      <title>Re: Download Files From Dropbox Using Ruby</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Download-Files-From-Dropbox-Using-Ruby/m-p/285415#M17480</link>
      <description>Once you retrieve an access token, you can store and re-use it for future calls. While you can revoke access tokens on demand, they don't expire on their own.&lt;BR /&gt;&lt;BR /&gt;To list the contents of folders, you should use /2/files/list_folder[/continue]:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#files-list_folder" target="_blank"&gt;https://www.dropbox.com/developers/documentation/http/documentation#files-list_folder&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#files-list_folder-continue" target="_blank"&gt;https://www.dropbox.com/developers/documentation/http/documentation#files-list_folder-continue&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;To download files, you should use /2/files/download:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#files-download" target="_blank"&gt;https://www.dropbox.com/developers/documentation/http/documentation#files-download&lt;/A&gt;</description>
      <pubDate>Thu, 19 Jul 2018 13:19:01 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Download-Files-From-Dropbox-Using-Ruby/m-p/285415#M17480</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2018-07-19T13:19:01Z</dc:date>
    </item>
    <item>
      <title>Re: Download Files From Dropbox Using Ruby</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Download-Files-From-Dropbox-Using-Ruby/m-p/285425#M17487</link>
      <description>Thanks for the reply and solution. I will check and let you know .</description>
      <pubDate>Thu, 19 Jul 2018 13:58:29 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Download-Files-From-Dropbox-Using-Ruby/m-p/285425#M17487</guid>
      <dc:creator>ROR</dc:creator>
      <dc:date>2018-07-19T13:58:29Z</dc:date>
    </item>
  </channel>
</rss>

