<?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: I want to get shared_folder_id. in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/I-want-to-get-shared-folder-id/m-p/637453#M29371</link>
    <description>&lt;P&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1592195"&gt;@eperic&lt;/a&gt; The links in the first list in my previous message refer to different methods that can be used to retrieve shared folder IDs for shared folders. Exactly what approach one would take would depend on what the scenario is. For example, to get the shared folder ID of a shared folder at a given path, one would use &lt;A href="https://dropbox-sdk-python.readthedocs.io/en/latest/api/dropbox.html#dropbox.dropbox_client.Dropbox.files_get_metadata" target="_blank" rel="nofollow noopener noreferrer"&gt;files_get_metadata&lt;/A&gt;. Or to list all files/folders under a particular path, including shared folder IDs for shared folders, one would use&amp;nbsp;&lt;A href="https://dropbox-sdk-python.readthedocs.io/en/latest/api/dropbox.html#dropbox.dropbox_client.Dropbox.files_list_folder" target="_blank" rel="nofollow noopener noreferrer"&gt;files_list_folder&lt;/A&gt;/&lt;A href="https://dropbox-sdk-python.readthedocs.io/en/latest/api/dropbox.html#dropbox.dropbox_client.Dropbox.files_list_folder_continue" target="_blank" rel="nofollow noopener noreferrer"&gt;files_list_folder_continue&lt;/A&gt;. Or to list all shared folders for the connected account, one would use &lt;A href="https://dropbox-sdk-python.readthedocs.io/en/latest/api/dropbox.html#dropbox.dropbox_client.Dropbox.sharing_list_folders" target="_blank" rel="nofollow noopener noreferrer"&gt;sharing_list_folders&lt;/A&gt;/&lt;A href="https://dropbox-sdk-python.readthedocs.io/en/latest/api/dropbox.html#dropbox.dropbox_client.Dropbox.sharing_list_folders_continue" target="_blank" rel="nofollow noopener noreferrer"&gt;sharing_list_folders_continue&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Those are links to the methods in &lt;A href="https://github.com/dropbox/dropbox-sdk-python" target="_blank"&gt;the Python SDK&lt;/A&gt;, since the original poster here asked about using Python, but these methods are also available as HTTPS endpoints, in case you can't use one of &lt;A href="https://www.dropbox.com/developers/documentation#sdks" target="_blank"&gt;the official SDKs&lt;/A&gt;, respectively:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#files-get_metadata" target="_blank"&gt;/2/files/get_metadata&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#files-list_folder" target="_blank"&gt;/2/files/list_folder&lt;/A&gt; / &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#files-list_folder-continue" target="_blank"&gt;/2/files/list_folder/continue&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#sharing-list_folders" target="_blank"&gt;/2/sharing/list_folders&lt;/A&gt; / &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#sharing-list_folders-continue" target="_blank"&gt;/2/sharing/list_folders/continue&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;The linked documentation includes examples of calling those using curl. The &lt;A href="https://dropbox.github.io/dropbox-api-v2-explorer/" target="_blank"&gt;API Explorer&lt;/A&gt; is also a very useful tool for trying out calls.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 17 Nov 2022 15:11:17 GMT</pubDate>
    <dc:creator>Greg-DB</dc:creator>
    <dc:date>2022-11-17T15:11:17Z</dc:date>
    <item>
      <title>I want to get shared_folder_id.</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/I-want-to-get-shared-folder-id/m-p/636419#M29356</link>
      <description>&lt;P&gt;Hi, developpers!&lt;/P&gt;&lt;P&gt;I have some shared-folders which is created by GUI. I want to manipulate these folders via API. How do I get these folder’s shared_folder_id of these folders. If I can get those, I want to operate those folders by Python.&lt;/P&gt;</description>
      <pubDate>Mon, 14 Nov 2022 06:11:39 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/I-want-to-get-shared-folder-id/m-p/636419#M29356</guid>
      <dc:creator>NS_takahiro</dc:creator>
      <dc:date>2022-11-14T06:11:39Z</dc:date>
    </item>
    <item>
      <title>Re: I want to get shared_folder_id.</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/I-want-to-get-shared-folder-id/m-p/636493#M29357</link>
      <description>&lt;P&gt;You can get the shared folder IDs for shared folders using a number of different pieces of the Dropbox API. For instance, via &lt;A href="https://github.com/dropbox/dropbox-sdk-python" target="_blank"&gt;the Dropbox Python SDK&lt;/A&gt;:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://dropbox-sdk-python.readthedocs.io/en/latest/api/dropbox.html#dropbox.dropbox_client.Dropbox.files_get_metadata" target="_blank"&gt;files_get_metadata&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://dropbox-sdk-python.readthedocs.io/en/latest/api/dropbox.html#dropbox.dropbox_client.Dropbox.files_list_folder" target="_blank"&gt;files_list_folder&lt;/A&gt;/&lt;A href="https://dropbox-sdk-python.readthedocs.io/en/latest/api/dropbox.html#dropbox.dropbox_client.Dropbox.files_list_folder_continue" target="_blank"&gt;files_list_folder_continue&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://dropbox-sdk-python.readthedocs.io/en/latest/api/dropbox.html#dropbox.dropbox_client.Dropbox.sharing_list_folders" target="_blank"&gt;sharing_list_folders&lt;/A&gt;/&lt;A href="https://dropbox-sdk-python.readthedocs.io/en/latest/api/dropbox.html#dropbox.dropbox_client.Dropbox.sharing_list_folders_continue" target="_blank"&gt;sharing_list_folders_continue&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;The following guides may be helpful:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://www.dropbox.com/developers/reference/getting-started" target="_blank"&gt;https://www.dropbox.com/developers/reference/getting-started&lt;/A&gt; &lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://developers.dropbox.com/dbx-file-access-guide" target="_blank"&gt;https://developers.dropbox.com/dbx-file-access-guide&lt;/A&gt; &lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://developers.dropbox.com/dbx-sharing-guide" target="_blank"&gt;https://developers.dropbox.com/dbx-sharing-guide&lt;/A&gt; &lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Mon, 14 Nov 2022 12:56:56 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/I-want-to-get-shared-folder-id/m-p/636493#M29357</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2022-11-14T12:56:56Z</dc:date>
    </item>
    <item>
      <title>Re: I want to get shared_folder_id.</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/I-want-to-get-shared-folder-id/m-p/637344#M29370</link>
      <description>&lt;P&gt;Is there an easy way to find a shared_folder_id? Maybe the solution could be posted right here where people searching can easily find it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Eric&lt;/P&gt;</description>
      <pubDate>Thu, 17 Nov 2022 01:43:49 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/I-want-to-get-shared-folder-id/m-p/637344#M29370</guid>
      <dc:creator>eperic</dc:creator>
      <dc:date>2022-11-17T01:43:49Z</dc:date>
    </item>
    <item>
      <title>Re: I want to get shared_folder_id.</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/I-want-to-get-shared-folder-id/m-p/637453#M29371</link>
      <description>&lt;P&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1592195"&gt;@eperic&lt;/a&gt; The links in the first list in my previous message refer to different methods that can be used to retrieve shared folder IDs for shared folders. Exactly what approach one would take would depend on what the scenario is. For example, to get the shared folder ID of a shared folder at a given path, one would use &lt;A href="https://dropbox-sdk-python.readthedocs.io/en/latest/api/dropbox.html#dropbox.dropbox_client.Dropbox.files_get_metadata" target="_blank" rel="nofollow noopener noreferrer"&gt;files_get_metadata&lt;/A&gt;. Or to list all files/folders under a particular path, including shared folder IDs for shared folders, one would use&amp;nbsp;&lt;A href="https://dropbox-sdk-python.readthedocs.io/en/latest/api/dropbox.html#dropbox.dropbox_client.Dropbox.files_list_folder" target="_blank" rel="nofollow noopener noreferrer"&gt;files_list_folder&lt;/A&gt;/&lt;A href="https://dropbox-sdk-python.readthedocs.io/en/latest/api/dropbox.html#dropbox.dropbox_client.Dropbox.files_list_folder_continue" target="_blank" rel="nofollow noopener noreferrer"&gt;files_list_folder_continue&lt;/A&gt;. Or to list all shared folders for the connected account, one would use &lt;A href="https://dropbox-sdk-python.readthedocs.io/en/latest/api/dropbox.html#dropbox.dropbox_client.Dropbox.sharing_list_folders" target="_blank" rel="nofollow noopener noreferrer"&gt;sharing_list_folders&lt;/A&gt;/&lt;A href="https://dropbox-sdk-python.readthedocs.io/en/latest/api/dropbox.html#dropbox.dropbox_client.Dropbox.sharing_list_folders_continue" target="_blank" rel="nofollow noopener noreferrer"&gt;sharing_list_folders_continue&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Those are links to the methods in &lt;A href="https://github.com/dropbox/dropbox-sdk-python" target="_blank"&gt;the Python SDK&lt;/A&gt;, since the original poster here asked about using Python, but these methods are also available as HTTPS endpoints, in case you can't use one of &lt;A href="https://www.dropbox.com/developers/documentation#sdks" target="_blank"&gt;the official SDKs&lt;/A&gt;, respectively:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#files-get_metadata" target="_blank"&gt;/2/files/get_metadata&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#files-list_folder" target="_blank"&gt;/2/files/list_folder&lt;/A&gt; / &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#files-list_folder-continue" target="_blank"&gt;/2/files/list_folder/continue&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#sharing-list_folders" target="_blank"&gt;/2/sharing/list_folders&lt;/A&gt; / &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#sharing-list_folders-continue" target="_blank"&gt;/2/sharing/list_folders/continue&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;The linked documentation includes examples of calling those using curl. The &lt;A href="https://dropbox.github.io/dropbox-api-v2-explorer/" target="_blank"&gt;API Explorer&lt;/A&gt; is also a very useful tool for trying out calls.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Nov 2022 15:11:17 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/I-want-to-get-shared-folder-id/m-p/637453#M29371</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2022-11-17T15:11:17Z</dc:date>
    </item>
  </channel>
</rss>

