<?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: Dropbox download api is not working in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-download-api-is-not-working/m-p/324382#M19061</link>
    <description>&lt;P&gt;&lt;SPAN&gt;Thanks for the context. Right now, I unfortunately don't have a solution to offer for downloading these "received" files programmatically. This is open with the team, but I can't offer a timeline for when that may be possible. I'll follow up here once I have any update on this.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 21 Jan 2019 15:54:35 GMT</pubDate>
    <dc:creator>Greg-DB</dc:creator>
    <dc:date>2019-01-21T15:54:35Z</dc:date>
    <item>
      <title>Dropbox download api is not working</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-download-api-is-not-working/m-p/323213#M18996</link>
      <description>&lt;P&gt;Dropbox download is not working, we are getting this error message 'service unavailable' with error code 503.. what is the alternative of this API.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Api endpoint:&amp;nbsp;&lt;A href="https://content.dropboxapi.com/2/sharing/get_shared_link_file" target="_blank"&gt;https://content.dropboxapi.com/2/sharing/get_shared_link_file&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 09:08:24 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-download-api-is-not-working/m-p/323213#M18996</guid>
      <dc:creator>amit-kumar</dc:creator>
      <dc:date>2019-05-29T09:08:24Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox download api is not working</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-download-api-is-not-working/m-p/323321#M19000</link>
      <description>&lt;P&gt;Thanks for the report!&amp;nbsp;I'll be happy to help with any issues you're having with the Dropbox API, but I'll need some more information. Please reply with:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;the name and version of the platform and SDK/library you are using, if any&lt;/LI&gt;
&lt;LI&gt;the steps to reproduce the issue, including the relevant code snippet(s)&lt;/LI&gt;
&lt;LI&gt;the full text of the error/any output&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Tue, 15 Jan 2019 17:16:47 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-download-api-is-not-working/m-p/323321#M19000</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2019-01-15T17:16:47Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox download api is not working</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-download-api-is-not-working/m-p/323437#M19013</link>
      <description>&lt;P&gt;Thanks for reply!&lt;BR /&gt;1. we are using php 5.6 and using dropbox apis with guzzle (php package)&lt;BR /&gt;2. the steps to reproduce issues, guzzle requests are given below:&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;(a) get file listing by using api files/list_folder get file id from response&lt;BR /&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Dropbox api url:&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-api-v2-explorer/#files_list_folder" target="_blank"&gt;https://dropbox.github.io/dropbox-api-v2-explorer/#files_list_folder&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Our Code&lt;/STRONG&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;$response = $this-&amp;gt;request-&amp;gt;post('&lt;A href="https://api.dropboxapi.com/2/files/list_folder" target="_blank"&gt;https://api.dropboxapi.com/2/files/list_folder&lt;/A&gt;',&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;['json' =&amp;gt; [&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; "path" =&amp;gt; parent_id&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; "limit" =&amp;gt; limit,&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;]]);&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;(b) get preview url from this api response sharing/get_file_metadata&lt;BR /&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Dropbox api url:&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-api-v2-explorer/#sharing_get_file_metadata" target="_blank"&gt;https://dropbox.github.io/dropbox-api-v2-explorer/#sharing_get_file_metadata&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Our Code&lt;/STRONG&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $response = $this-&amp;gt;request-&amp;gt;post('&lt;A href="https://api.dropboxapi.com/2/sharing/get_file_metadata" target="_blank"&gt;https://api.dropboxapi.com/2/sharing/get_file_metadata&lt;/A&gt;', ['json' =&amp;gt; [&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'file' =&amp;gt; 'file_id',&lt;BR /&gt;&amp;nbsp; &amp;nbsp; ]]);&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;(c) call another api sharing/get_shared_link_file&lt;BR /&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Dropbox api url:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/STRONG&gt;&lt;A href="https://dropbox.github.io/dropbox-api-v2-explorer/#sharing_get_shared_link_file" target="_blank"&gt;https://dropbox.github.io/dropbox-api-v2-explorer/#sharing_get_shared_link_file&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Our Code&lt;/STRONG&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $response = $this-&amp;gt;request-&amp;gt;post('&lt;A href="https://content.dropboxapi.com/2/sharing/get_shared_link_file" target="_blank"&gt;https://content.dropboxapi.com/2/sharing/get_shared_link_file&lt;/A&gt;');&lt;/P&gt;&lt;P&gt;3. after calling above api(c) we getting the error&lt;BR /&gt;&lt;STRONG&gt;Error:503&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Jan 2019 09:47:25 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-download-api-is-not-working/m-p/323437#M19013</guid>
      <dc:creator>amit-kumar</dc:creator>
      <dc:date>2019-01-16T09:47:25Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox download api is not working</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-download-api-is-not-working/m-p/323511#M19016</link>
      <description>&lt;P&gt;Thanks! That's helpful. We'll look into it.&lt;/P&gt;
&lt;P&gt;Note that if you just want to download the file though, and you are already connected to the account and have the file ID or path, you don't need to use /2/sharing/get_file_metadata and /2/sharing/get_file_metadata.&lt;/P&gt;
&lt;P&gt;Once you know the file ID or path (from the&amp;nbsp;/2/files/list_folder result), you can then call &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#files-download" target="_self"&gt;/2/files/download&lt;/A&gt;&amp;nbsp;to download the file.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Jan 2019 16:09:02 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-download-api-is-not-working/m-p/323511#M19016</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2019-01-16T16:09:02Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox download api is not working</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-download-api-is-not-working/m-p/323675#M19032</link>
      <description>&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;yes, its working. But we are unable to download &lt;STRONG&gt;shared files&lt;/STRONG&gt;&amp;nbsp;by calling &lt;A href="https://dropbox.github.io/dropbox-api-v2-explorer/#files_download" target="_blank"&gt;https://dropbox.github.io/dropbox-api-v2-explorer/#files_download&lt;/A&gt; api. getting error&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;{ &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;"&lt;/SPAN&gt;&lt;SPAN class="hljs-attribute"&gt;error_summary&lt;/SPAN&gt;&lt;SPAN&gt;": &lt;/SPAN&gt;&lt;SPAN class="hljs-value"&gt;&lt;SPAN class="hljs-string"&gt;"path/not_found/"&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; "&lt;/SPAN&gt;&lt;SPAN class="hljs-attribute"&gt;error&lt;/SPAN&gt;&lt;SPAN&gt;": &lt;/SPAN&gt;&lt;SPAN class="hljs-value"&gt;{ &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="hljs-value"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;"&lt;SPAN class="hljs-attribute"&gt;.tag&lt;/SPAN&gt;": &lt;SPAN class="hljs-string"&gt;"path"&lt;/SPAN&gt;, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="hljs-value"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;"&lt;SPAN class="hljs-attribute"&gt;path&lt;/SPAN&gt;": { &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="hljs-value"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;"&lt;SPAN class="hljs-attribute"&gt;.tag&lt;/SPAN&gt;": &lt;SPAN class="hljs-string"&gt;"not_found"&lt;/SPAN&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="hljs-value"&gt;} } &lt;/SPAN&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Jan 2019 07:30:06 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-download-api-is-not-working/m-p/323675#M19032</guid>
      <dc:creator>amit-kumar</dc:creator>
      <dc:date>2019-01-17T07:30:06Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox download api is not working</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-download-api-is-not-working/m-p/323758#M19036</link>
      <description>&lt;P&gt;You should be able to download a file from a connected&amp;nbsp;Dropbox account using /2/files/download the same way regardless of whether or not the file is in a shared folder. E.g., you should pass in the 'path_lower' or 'id' value for the file you want as the "path" parameter.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What exactly are you passing in when you get this unexpected error, and where did you get the value?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Jan 2019 16:31:22 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-download-api-is-not-working/m-p/323758#M19036</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2019-01-17T16:31:22Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox download api is not working</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-download-api-is-not-working/m-p/323858#M19040</link>
      <description>&lt;P&gt;Thanks!&lt;BR /&gt;(a) get shared file listing by using api sharing/list_received_files get file id from response instead of path_lower&lt;BR /&gt;&lt;STRONG&gt;Dropbox api url:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &lt;A href="https://dropbox.github.io/dropbox-api-v2-explorer/#sharing_list_received_files" target="_blank"&gt;https://dropbox.github.io/dropbox-api-v2-explorer/#sharing_list_received_files&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Response:&lt;/STRONG&gt;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt; {
   "entries": [
       {
         "access_type": {
           ".tag": "viewer"
          },
      "id": "id:8bMGXkXlCLAAAAAAAAAKzg",
      "name": "1543493331_1710348706_235215.jpg",
      "policy": {
         "acl_update_policy": {
            ".tag": "editors"
          },
         "shared_link_policy": {
            ".tag": "anyone"
          },
         "viewer_info_policy": {
            ".tag": "enabled"
          }
       },
       "preview_url": "https://www.dropbox.com/scl/fi/ns29hn0d7b5u2hwken9bn/154349385331_1710348706_23515.jpg?dl=0",
       "time_invited": "2019-01-17T07:03:16Z"
     }
   ],
   "cursor": "CmgKFkctNkpkRjFzQkNBQUTEDFBQUFBQUFBQXcQABpMAzJJbGlzdF90eXBlRGxpc3RPbGlzdGFyZ3NfYnlfZ2lkMRgb7ol0XWwEIAMzRGRlc2MCRWxpbWl0gUhyZXZpc2lvbgchdaO3ApF6FRAB"
}&lt;/PRE&gt;&lt;P&gt;(b) Then we pass &lt;STRONG&gt;id&lt;/STRONG&gt; as the "path" parameter.&lt;BR /&gt;&lt;STRONG&gt;Dropbox api url:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://dropbox.github.io/dropbox-api-v2-explorer/#files_download" target="_blank"&gt;https://dropbox.github.io/dropbox-api-v2-explorer/#files_download&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Response&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;{
     "error_summary": "path/not_found/.",
     "error": {
         ".tag": "path",
         "path": {
              ".tag": "not_found"
          }
     }
}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Jan 2019 07:08:07 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-download-api-is-not-working/m-p/323858#M19040</guid>
      <dc:creator>amit-kumar</dc:creator>
      <dc:date>2019-01-18T07:08:07Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox download api is not working</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-download-api-is-not-working/m-p/323981#M19043</link>
      <description>&lt;P&gt;Thanks! That's helpful. Apologies for the trouble. I meant that you should be able to pass in the id for a file as retrieved from&amp;nbsp;/2/files/list_folder, like in your original post, even if they're in a shared folder in the account, for instance.&lt;/P&gt;
&lt;P&gt;The files listed from&amp;nbsp;/2/sharing/list_received_files aren't actually in the connected account (they're actually in the sharer's account), so the /2/files/download call won't work in this scenario. I'll ask the team to support that on&amp;nbsp;/2/files/download, but I can't promise if/when that would be implemented.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Jan 2019 18:42:26 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-download-api-is-not-working/m-p/323981#M19043</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2019-01-18T18:42:26Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox download api is not working</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-download-api-is-not-working/m-p/324043#M19052</link>
      <description>&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;Our project is delayed bcoz of&amp;nbsp;api issues.&lt;BR /&gt;We wants to download shared files, please tell us the api which is useful for this task, if not any kind of api exists then please fix these issues ASAP.&lt;/P&gt;</description>
      <pubDate>Sat, 19 Jan 2019 06:39:32 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-download-api-is-not-working/m-p/324043#M19052</guid>
      <dc:creator>amit-kumar</dc:creator>
      <dc:date>2019-01-19T06:39:32Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox download api is not working</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-download-api-is-not-working/m-p/324382#M19061</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Thanks for the context. Right now, I unfortunately don't have a solution to offer for downloading these "received" files programmatically. This is open with the team, but I can't offer a timeline for when that may be possible. I'll follow up here once I have any update on this.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Jan 2019 15:54:35 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-download-api-is-not-working/m-p/324382#M19061</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2019-01-21T15:54:35Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox download api is not working</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-download-api-is-not-working/m-p/327064#M19161</link>
      <description>&lt;P&gt;hello,&amp;nbsp;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/10"&gt;@Greg-DB&lt;/a&gt;&amp;nbsp; any&amp;nbsp;&lt;SPAN&gt;solution for downloading&amp;nbsp; "received" files? and when that would be implemented?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Feb 2019 07:26:53 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-download-api-is-not-working/m-p/327064#M19161</guid>
      <dc:creator>amit-kumar</dc:creator>
      <dc:date>2019-02-05T07:26:53Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox download api is not working</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-download-api-is-not-working/m-p/327142#M19165</link>
      <description>&lt;P&gt;No, unfortunately I don't have an update on this.&lt;/P&gt;</description>
      <pubDate>Tue, 05 Feb 2019 16:35:36 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-download-api-is-not-working/m-p/327142#M19165</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2019-02-05T16:35:36Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox download api is not working</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-download-api-is-not-working/m-p/355523#M20304</link>
      <description>&lt;P&gt;You should be able to convert the ?dl=0 to ?dl=1 given to you in the preview url.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jul 2019 18:50:49 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-download-api-is-not-working/m-p/355523#M20304</guid>
      <dc:creator>astaley</dc:creator>
      <dc:date>2019-07-16T18:50:49Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox download api is not working</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-download-api-is-not-working/m-p/355543#M20305</link>
      <description>&lt;P&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1186437"&gt;@astaley&lt;/a&gt;&amp;nbsp;Thanks for the note!&amp;nbsp;That looks like a usable workaround if the link is publicly accessibly. To clarify for others, you can directly download from links like this by using the URL parameters &lt;A href="https://help.dropbox.com/files-folders/share/force-download" target="_self"&gt;documented here&lt;/A&gt;. This is unrelated to the actual&amp;nbsp;Dropbox API though, and would only work if the link is publicly accessible, e.g., it doesn't have a password, etc.&lt;/P&gt;
&lt;P&gt;The original issue on this thread, with the error returned by /2/sharing/get_shared_link_file for this kind of link, is still open. Changing the "dl" parameter doesn't affect that.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jul 2019 20:44:01 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-download-api-is-not-working/m-p/355543#M20305</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2019-07-16T20:44:01Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox download api is not working</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-download-api-is-not-working/m-p/355546#M20307</link>
      <description>&lt;P&gt;Ah sorry, I was actually really unclear. I don't even think that works if the doc is publically available.&lt;/P&gt;&lt;P&gt;It only works if you possess an HTTP cookie for the user, as the dl links are cookie authenticated, not oauth.&amp;nbsp; I'm not sure what type of app OP is building, but this would be workable on say a mobile app (or a personal one)&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jul 2019 21:58:24 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-download-api-is-not-working/m-p/355546#M20307</guid>
      <dc:creator>astaley</dc:creator>
      <dc:date>2019-07-16T21:58:24Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox download api is not working</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-download-api-is-not-working/m-p/357016#M20374</link>
      <description>&lt;P&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/733384"&gt;@amit-kumar&lt;/a&gt;&amp;nbsp;The 503 issue on&amp;nbsp;get_shared_link_file should be fixed now.&amp;nbsp;Please try again and let me know if you're still seeing any issues.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jul 2019 18:29:45 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-download-api-is-not-working/m-p/357016#M20374</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2019-07-24T18:29:45Z</dc:date>
    </item>
  </channel>
</rss>

