<?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: get download link in Discuss Dropbox Developer &amp; API</title>
    <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/get-download-link/m-p/564409#M2290</link>
    <description>&lt;P&gt;I see you opened &lt;A href="https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/create-custom-link/td-p/564309" target="_self"&gt;a new thread&lt;/A&gt; for this. I'll follow up with you there.&lt;/P&gt;</description>
    <pubDate>Wed, 15 Dec 2021 18:46:12 GMT</pubDate>
    <dc:creator>Greg-DB</dc:creator>
    <dc:date>2021-12-15T18:46:12Z</dc:date>
    <item>
      <title>get download link</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/get-download-link/m-p/564081#M2284</link>
      <description>&lt;P&gt;How to get a file download link with python and javascript?&lt;/P&gt;</description>
      <pubDate>Tue, 14 Dec 2021 19:47:13 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/get-download-link/m-p/564081#M2284</guid>
      <dc:creator>alicera</dc:creator>
      <dc:date>2021-12-14T19:47:13Z</dc:date>
    </item>
    <item>
      <title>Re: get download link</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/get-download-link/m-p/564136#M2287</link>
      <description>&lt;P&gt;If you need to download a file via the API, you can do so directly by using &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#files-download" target="_self"&gt;/2/files/download&lt;/A&gt;. That's &lt;A href="https://dropbox-sdk-python.readthedocs.io/en/latest/api/dropbox.html#dropbox.dropbox_client.Dropbox.files_download" target="_self"&gt;files_download&lt;/A&gt; in the &lt;A href="https://github.com/dropbox/dropbox-sdk-python" target="_self"&gt;Python SDK&lt;/A&gt;, and &lt;A href="https://dropbox.github.io/dropbox-sdk-js/Dropbox.html#filesDownload__anchor" target="_self"&gt;filesDownload&lt;/A&gt; in the &lt;A href="https://github.com/dropbox/dropbox-sdk-js" target="_self"&gt;JavaScript SDK&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you do need to download a file from a URL instead of directly from an API call though, you can call &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#files-get_temporary_link" target="_self"&gt;/2/files/get_temporary_link&lt;/A&gt; to get a temporary link to the file, which you can then use to download the file. That's &lt;A href="https://dropbox-sdk-python.readthedocs.io/en/latest/api/dropbox.html#dropbox.dropbox_client.Dropbox.files_get_temporary_link" target="_self"&gt;files_get_temporary_link&lt;/A&gt; in the &lt;A href="https://github.com/dropbox/dropbox-sdk-python" target="_self"&gt;Python SDK&lt;/A&gt;, and &lt;A href="https://dropbox.github.io/dropbox-sdk-js/Dropbox.html#filesGetTemporaryLink__anchor" target="_self"&gt;filesGetTemporaryLink&lt;/A&gt; in the &lt;A href="https://github.com/dropbox/dropbox-sdk-js" target="_self"&gt;JavaScript SDK&lt;/A&gt;.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Dec 2021 14:59:23 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/get-download-link/m-p/564136#M2287</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2021-12-14T14:59:23Z</dc:date>
    </item>
    <item>
      <title>Re: get download link</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/get-download-link/m-p/564273#M2288</link>
      <description>&lt;P&gt;I want to put the fixed path&lt;/P&gt;&lt;P&gt;data/&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;├── folder1&amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;├── hello.json&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;├── haha.json&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;├── folder2&amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;├── aa.json&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could I search the folder1 and get the link of hello.json and the link of haha.json with code?&lt;/P&gt;&lt;P&gt;Do you have suggestions?&lt;/P&gt;</description>
      <pubDate>Wed, 15 Dec 2021 07:39:56 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/get-download-link/m-p/564273#M2288</guid>
      <dc:creator>alicera</dc:creator>
      <dc:date>2021-12-15T07:39:56Z</dc:date>
    </item>
    <item>
      <title>Re: get download link</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/get-download-link/m-p/564409#M2290</link>
      <description>&lt;P&gt;I see you opened &lt;A href="https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/create-custom-link/td-p/564309" target="_self"&gt;a new thread&lt;/A&gt; for this. I'll follow up with you there.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Dec 2021 18:46:12 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/get-download-link/m-p/564409#M2290</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2021-12-15T18:46:12Z</dc:date>
    </item>
  </channel>
</rss>

