<?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 all shared links in a folder? in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-get-all-shared-links-in-a-folder/m-p/431216#M22841</link>
    <description>&lt;P&gt;For example if I have 5 files in folder /images,&amp;nbsp; how list all the shared links?&amp;nbsp; And I dont want to share the folder.&lt;/P&gt;&lt;P&gt;/images&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;1.jpg&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;2.jpg&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; ...&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;5.jpg&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried&amp;nbsp;&lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#sharing-list_shared_links" target="_blank" rel="noopener"&gt;https://www.dropbox.com/developers/documentation/http/documentation#sharing-list_shared_links&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;curl -X POST https://api.dropboxapi.com/2/sharing/list_shared_links \
--header "Authorization: Bearer xxxx \
--header "Content-Type: application/json" \
--data "{ \"path\": \"/images\"}"&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It cannot list all the shared links, it returns:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;{"links": [], "has_more": false}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 20 Jun 2020 03:47:05 GMT</pubDate>
    <dc:creator>gembin</dc:creator>
    <dc:date>2020-06-20T03:47:05Z</dc:date>
    <item>
      <title>How to get all shared links in a folder?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-get-all-shared-links-in-a-folder/m-p/431216#M22841</link>
      <description>&lt;P&gt;For example if I have 5 files in folder /images,&amp;nbsp; how list all the shared links?&amp;nbsp; And I dont want to share the folder.&lt;/P&gt;&lt;P&gt;/images&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;1.jpg&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;2.jpg&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; ...&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;5.jpg&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried&amp;nbsp;&lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#sharing-list_shared_links" target="_blank" rel="noopener"&gt;https://www.dropbox.com/developers/documentation/http/documentation#sharing-list_shared_links&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;curl -X POST https://api.dropboxapi.com/2/sharing/list_shared_links \
--header "Authorization: Bearer xxxx \
--header "Content-Type: application/json" \
--data "{ \"path\": \"/images\"}"&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It cannot list all the shared links, it returns:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;{"links": [], "has_more": false}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 20 Jun 2020 03:47:05 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-get-all-shared-links-in-a-folder/m-p/431216#M22841</guid>
      <dc:creator>gembin</dc:creator>
      <dc:date>2020-06-20T03:47:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to get all shared links in a folder?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-get-all-shared-links-in-a-folder/m-p/431631#M22846</link>
      <description>&lt;P&gt;&lt;SPAN&gt;The Dropbox API unfortunately doesn't offer a way to retrieve all shared links for items inside a specific folder, but I'll pass this along as a feature request.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Using /2/sharing/list_shared_links with a specific path only "returns a list of all shared links that allow access to the given path - direct links to the given path and links to parent folders of the given path", so you'd need to either:&lt;/SPAN&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;SPAN&gt;call&amp;nbsp;/2/sharing/list_shared_links once for each specific file, or&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;not specify a path, and then do the filtering client-side for items under that path&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Mon, 22 Jun 2020 15:14:31 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-get-all-shared-links-in-a-folder/m-p/431631#M22846</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2020-06-22T15:14:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to get all shared links in a folder?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-get-all-shared-links-in-a-folder/m-p/608421#M28185</link>
      <description>&lt;P&gt;Hey! Does Dropbox API have any changes? I wanna get downloadable link of items inside folders, Is it possible to get it in one API request? Currently I'm using&amp;nbsp;get_shared_link_metadata endpoint and it works really long for the big amount of records because i should make request for each item.&lt;/P&gt;</description>
      <pubDate>Fri, 08 Jul 2022 16:01:39 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-get-all-shared-links-in-a-folder/m-p/608421#M28185</guid>
      <dc:creator>kuznetsovvl</dc:creator>
      <dc:date>2022-07-08T16:01:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to get all shared links in a folder?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-get-all-shared-links-in-a-folder/m-p/608450#M28192</link>
      <description>&lt;P&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1429406"&gt;@kuznetsovvl&lt;/a&gt; No, unfortunately I don't have any changes to report for this feature request.&lt;/P&gt;</description>
      <pubDate>Fri, 08 Jul 2022 17:32:40 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-get-all-shared-links-in-a-folder/m-p/608450#M28192</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2022-07-08T17:32:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to get all shared links in a folder?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-get-all-shared-links-in-a-folder/m-p/635759#M29339</link>
      <description>&lt;P&gt;any changes or updated within the api to support listing the sharing links for a shared folder?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Nov 2022 15:41:16 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-get-all-shared-links-in-a-folder/m-p/635759#M29339</guid>
      <dc:creator>DoControl</dc:creator>
      <dc:date>2022-11-10T15:41:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to get all shared links in a folder?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-get-all-shared-links-in-a-folder/m-p/635781#M29340</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1458547"&gt;@DoControl&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;any changes or updated within the api to support listing the sharing links for a shared folder?&amp;nbsp;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Hi &lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1458547"&gt;@DoControl&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;You are asking something different than the OP! Listing of a folder pointed by a shared link was and is possible/supported. Unfortunately, the information provided by &lt;A title="Starts returning the contents of a folder" href="https://www.dropbox.com/developers/documentation/http/documentation#files-list_folder" target="_blank" rel="noopener"&gt;/2/files/list_folder&lt;/A&gt; doesn't contain nested links info. You should process one by one all nested entries to receive the nested entries links (something relatively slow, as was mentioned). 🤷 That's it.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Nov 2022 16:39:57 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-get-all-shared-links-in-a-folder/m-p/635781#M29340</guid>
      <dc:creator>Здравко</dc:creator>
      <dc:date>2022-11-10T16:39:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to get all shared links in a folder?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-get-all-shared-links-in-a-folder/m-p/635783#M29341</link>
      <description>&lt;P&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1458547"&gt;@DoControl&lt;/a&gt; I see Здравко offered some additional information and insight. And for reference, there isn't any news on the original request regarding /2/sharing/list_shared_links.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Nov 2022 16:46:34 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-get-all-shared-links-in-a-folder/m-p/635783#M29341</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2022-11-10T16:46:34Z</dc:date>
    </item>
  </channel>
</rss>

