<?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 How to get file download url using api in php in Discuss Dropbox Developer &amp; API</title>
    <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/How-to-get-file-download-url-using-api-in-php/m-p/538750#M2065</link>
    <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to get a dropbox storage file download link. I want a downloadable file URL programmatically or using PHP function that I can use when I need to download a file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want any code, function to get the URL of the file download&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I want a link to download the file, later.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;using PHP get download file URL with&amp;nbsp;API &lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 11 Aug 2021 12:21:33 GMT</pubDate>
    <dc:creator>sunshine_sai</dc:creator>
    <dc:date>2021-08-11T12:21:33Z</dc:date>
    <item>
      <title>How to get file download url using api in php</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/How-to-get-file-download-url-using-api-in-php/m-p/538750#M2065</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to get a dropbox storage file download link. I want a downloadable file URL programmatically or using PHP function that I can use when I need to download a file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want any code, function to get the URL of the file download&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I want a link to download the file, later.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;using PHP get download file URL with&amp;nbsp;API &lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Aug 2021 12:21:33 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/How-to-get-file-download-url-using-api-in-php/m-p/538750#M2065</guid>
      <dc:creator>sunshine_sai</dc:creator>
      <dc:date>2021-08-11T12:21:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to get file download url using api in php</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/How-to-get-file-download-url-using-api-in-php/m-p/538785#M2069</link>
      <description>&lt;P&gt;The standard way to download a file via the Dropbox API is &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#files-download" target="_self"&gt;the /2/files/download endpoint&lt;/A&gt;. That returns the file data directly in the response body.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you do need a URL that you can use to download the file, 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;. That will return a link that you can use to access the file data later via a GET request. Note that these links are only valid for four hours though.&lt;/P&gt;</description>
      <pubDate>Wed, 11 Aug 2021 15:39:18 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/How-to-get-file-download-url-using-api-in-php/m-p/538785#M2069</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2021-08-11T15:39:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to get file download url using api in php</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/How-to-get-file-download-url-using-api-in-php/m-p/538913#M2076</link>
      <description>&lt;P&gt;Thanks for your reply&lt;/P&gt;&lt;P&gt;but I want file download link which any time any one can download file directly from my dropbox storage from my site using this URL.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How to get that link using API or PHP&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Aug 2021 09:49:17 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/How-to-get-file-download-url-using-api-in-php/m-p/538913#M2076</guid>
      <dc:creator>sunshine_sai</dc:creator>
      <dc:date>2021-08-12T09:49:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to get file download url using api in php</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/How-to-get-file-download-url-using-api-in-php/m-p/538981#M2079</link>
      <description>&lt;P&gt;If you need a non-temporary link, you can instead use &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#sharing-create_shared_link_with_settings" target="_self"&gt;/2/sharing/create_shared_link_with_settings&lt;/A&gt; to get a shared link.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can also modify those shared links for different behaviors as &lt;A href="https://help.dropbox.com/files-folders/share/force-download" target="_self"&gt;documented here&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Aug 2021 14:31:54 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/How-to-get-file-download-url-using-api-in-php/m-p/538981#M2079</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2021-08-12T14:31:54Z</dc:date>
    </item>
  </channel>
</rss>

