<?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 Read folder and download files from URL others users in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Read-folder-and-download-files-from-URL-others-users/m-p/206312#M10030</link>
    <description>&lt;P&gt;Someone gives me a public URL that is a folder with images. How i can read the folder and download the files that contains?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;URL example: &lt;A href="https://www.dropbox.com/sh/iccq7cc0xtvue9t/AADXnwDSYERNKOR6VdeqFmB6a?dl=0" target="_blank"&gt;https://www.dropbox.com/sh/iccq7cc0xtvue9t/AADXnwDSYERNKOR6VdeqFmB6a?dl=0&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Its not mine but i want download the content.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
    <pubDate>Wed, 29 May 2019 09:25:56 GMT</pubDate>
    <dc:creator>Neon20</dc:creator>
    <dc:date>2019-05-29T09:25:56Z</dc:date>
    <item>
      <title>Read folder and download files from URL others users</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Read-folder-and-download-files-from-URL-others-users/m-p/206312#M10030</link>
      <description>&lt;P&gt;Someone gives me a public URL that is a folder with images. How i can read the folder and download the files that contains?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;URL example: &lt;A href="https://www.dropbox.com/sh/iccq7cc0xtvue9t/AADXnwDSYERNKOR6VdeqFmB6a?dl=0" target="_blank"&gt;https://www.dropbox.com/sh/iccq7cc0xtvue9t/AADXnwDSYERNKOR6VdeqFmB6a?dl=0&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Its not mine but i want download the content.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 09:25:56 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Read-folder-and-download-files-from-URL-others-users/m-p/206312#M10030</guid>
      <dc:creator>Neon20</dc:creator>
      <dc:date>2019-05-29T09:25:56Z</dc:date>
    </item>
    <item>
      <title>Re: Read folder and download files from URL others users</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Read-folder-and-download-files-from-URL-others-users/m-p/206450#M10034</link>
      <description>&lt;P&gt;I can't try it here and now, but I would perform a GetMetadata, list all links for all the files and then perform a usual download changing the last character (the =0 by =1, so it forces the download).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't know if that replies to your question...&lt;/P&gt;</description>
      <pubDate>Sun, 12 Feb 2017 23:05:46 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Read-folder-and-download-files-from-URL-others-users/m-p/206450#M10034</guid>
      <dc:creator>Gonzo345</dc:creator>
      <dc:date>2017-02-12T23:05:46Z</dc:date>
    </item>
    <item>
      <title>Re: Read folder and download files from URL others users</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Read-folder-and-download-files-from-URL-others-users/m-p/206478#M10035</link>
      <description>Can expose a example, please.</description>
      <pubDate>Mon, 13 Feb 2017 09:18:11 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Read-folder-and-download-files-from-URL-others-users/m-p/206478#M10035</guid>
      <dc:creator>Neon20</dc:creator>
      <dc:date>2017-02-13T09:18:11Z</dc:date>
    </item>
    <item>
      <title>Re: Read folder and download files from URL others users</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Read-folder-and-download-files-from-URL-others-users/m-p/206482#M10036</link>
      <description>&lt;P&gt;By now I could just get the "whole" folder name. Let's see if Greg or another Dropboxer replies, but I did it this way:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;//We obtain the filename on Dropbox to save it later
var taskDescargar = Task.Run(async () =&amp;gt; await dropbox.Sharing.GetSharedLinkMetadataAsync(link));
var result = taskDescargar.Result;
string nombreArchivo = result.Name;
carpetaLocal = carpetaLocal + @"\" + nombreArchivo;    //We assign the name

using (var wclient = new WebClient())
{
       wclient.DownloadFile(rutaOrigenOk, carpetaLocal);
}&lt;/PRE&gt;
&lt;P&gt;I'm actually getting the "FOTOS PANORAMA DESDE EL PUENTE.zip" file, which is basically the compressed folder.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;P.S: done on C# .NET&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2017 09:35:25 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Read-folder-and-download-files-from-URL-others-users/m-p/206482#M10036</guid>
      <dc:creator>Gonzo345</dc:creator>
      <dc:date>2017-02-13T09:35:25Z</dc:date>
    </item>
    <item>
      <title>Re: Read folder and download files from URL others users</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Read-folder-and-download-files-from-URL-others-users/m-p/206490#M10037</link>
      <description>Can put the example in Java please? I can't find GetSharedLinkMetadataAsync.... thanks</description>
      <pubDate>Mon, 13 Feb 2017 09:55:17 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Read-folder-and-download-files-from-URL-others-users/m-p/206490#M10037</guid>
      <dc:creator>Neon20</dc:creator>
      <dc:date>2017-02-13T09:55:17Z</dc:date>
    </item>
    <item>
      <title>Re: Read folder and download files from URL others users</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Read-folder-and-download-files-from-URL-others-users/m-p/206501#M10038</link>
      <description>&lt;P&gt;I'm not really sure about Java, but looks like it could be &lt;A href="https://dropbox.github.io/dropbox-sdk-java/api-docs/v2.1.x/com/dropbox/core/v2/files/FileMetadata.html" target="_self"&gt;FileMetadata&lt;/A&gt;&amp;nbsp;or &lt;A href="https://dropbox.github.io/dropbox-sdk-java/api-docs/v2.1.x/com/dropbox/core/v2/files/FolderMetadata.html" target="_self"&gt;FolderMetadata&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;EDIT: Looks more like it's&amp;nbsp;FileLinkMetadata (&lt;A href="https://dropbox.github.io/dropbox-sdk-java/api-docs/v2.1.x/com/dropbox/core/v2/sharing/FileLinkMetadata.html" target="_self"&gt;Sharing.FileLinkMetadata&lt;/A&gt;)&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2017 17:30:11 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Read-folder-and-download-files-from-URL-others-users/m-p/206501#M10038</guid>
      <dc:creator>Gonzo345</dc:creator>
      <dc:date>2017-02-13T17:30:11Z</dc:date>
    </item>
    <item>
      <title>Re: Read folder and download files from URL others users</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Read-folder-and-download-files-from-URL-others-users/m-p/206608#M10045</link>
      <description>&lt;P&gt;If you just need to download the entire folder from a link like this, the simplest way is to use the URL parameters as instructed&amp;nbsp;here:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.dropbox.com/help/201" target="_blank"&gt;https://www.dropbox.com/help/201&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want to download individual files from the linked folder, you can use the API's&amp;nbsp;/2/sharing/get_shared_link_file endpoint:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#sharing-get_shared_link_file" target="_blank"&gt;https://www.dropbox.com/developers/documentation/http/documentation#sharing-get_shared_link_file&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In the Java SDK, that's the&amp;nbsp;getSharedLinkFile method:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://dropbox.github.io/dropbox-sdk-java/api-docs/v2.1.x/com/dropbox/core/v2/sharing/DbxUserSharingRequests.html#getSharedLinkFile-java.lang.String-" target="_blank"&gt;https://dropbox.github.io/dropbox-sdk-java/api-docs/v2.1.x/com/dropbox/core/v2/sharing/DbxUserSharingRequests.html#getSharedLinkFile-java.lang.String-&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That does require you to know the path of the file that you want in the folder though, and API v2 unfortunately doesn't offer a way to get the file listing.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2017 19:02:28 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Read-folder-and-download-files-from-URL-others-users/m-p/206608#M10045</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-02-13T19:02:28Z</dc:date>
    </item>
  </channel>
</rss>

