<?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: When trying to list folder contents, error happens in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/When-trying-to-list-folder-contents-error-happens/m-p/728906#M32236</link>
    <description>&lt;P&gt;Hi &lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1765527"&gt;@rohitkmk&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;As Greg already mentioned, app authentication can be used for information that doesn't need access to particular account (either personal or business) - listing public accessible shared links or at most password protected (the one you can provide thorough the call parameter). App Authentication identifies the application itself, but not the user that uses it! That's why you cannot use App Authentication to access data closely related to any particular account (i.e. to user, again both neither personal nor business) in any way (here we assume no any shared link points to the content; a link that can be "workaround"). To list (or do something else to) any part of account content, you need to represent somehow user having access to that content. That's what different tokens (access token and refresh token) are used for - user authentication.&lt;/P&gt;&lt;P&gt;According to your description you are already using user authentication (most probably; and by mistake label it as app authentication). If so, just keep in mind that for individual accounts providing token identifies in unique way particular user (the only user), but in case of business account (team account) it identifies in unique way the team (not user) if you have selected one team scope at least. You can solve it by removing all team specific scopes from permissions of your application (if you don't need them) or explicitly point the user using '&lt;A title="Member file access" href="https://www.dropbox.com/developers/documentation/http/teams#teams-member-file-access" target="_blank" rel="noopener"&gt;Dropbox-API-Select-User&lt;/A&gt;' header - whatever better match your case.&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PS: Just a recall - when you change permissions, you need to reauthenticate the user; such changes are NOT retroactive!&lt;/P&gt;&lt;P&gt;In any case post exact way you got to the error (like represented in OP).&lt;/P&gt;</description>
    <pubDate>Sat, 11 Nov 2023 23:05:59 GMT</pubDate>
    <dc:creator>Здравко</dc:creator>
    <dc:date>2023-11-11T23:05:59Z</dc:date>
    <item>
      <title>When trying to list folder contents, error happens</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/When-trying-to-list-folder-contents-error-happens/m-p/618956#M28497</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;New to Dropbox API.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I can create folders and files, but when I try to list the contents of a folder, I get an error message. I'm particularly interested in getting the contents of the root folder, but for now, I'm just trying to test it with a specific folder I have. &amp;nbsp;I'm using&amp;nbsp;&lt;A href="https://api.dropboxapi.com/2/files/list_folder," target="_blank" rel="noopener"&gt;https://api.dropboxapi.com/2/files/list_folder,&lt;/A&gt;&amp;nbsp;and trying to copy the documentation example exactly, like so:&lt;/P&gt;
&lt;P&gt;--header "Authorization: Basic XXXX"&lt;/P&gt;
&lt;P&gt;--header "Content-Type: application/json"&lt;/P&gt;
&lt;P&gt;--data "{\"include_deleted\":false,\"include_has_explicit_shared_members\":false,\"include_media_info\":false,\"include_mounted_folders\":true,\"include_non_downloadable_files\":true,\"path\":\"/FolderTest\",\"recursive\":false}"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But I get this error, and I don't see the mistake I'm making:&lt;/P&gt;
&lt;DIV&gt;{&lt;/DIV&gt;
&lt;DIV&gt;"error" :&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;{&lt;/DIV&gt;
&lt;DIV&gt;".tag" : "path",&lt;/DIV&gt;
&lt;DIV&gt;"path" :&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;{&lt;/DIV&gt;
&lt;DIV&gt;".tag" : "unsupported_content_type"&lt;/DIV&gt;
&lt;DIV&gt;}&lt;/DIV&gt;
&lt;DIV&gt;},&lt;/DIV&gt;
&lt;DIV&gt;"error_summary" : "path/unsupported_content_type/.."&lt;/DIV&gt;
&lt;DIV&gt;}&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Any ideas? Thanks.&lt;/DIV&gt;</description>
      <pubDate>Tue, 06 Sep 2022 09:53:58 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/When-trying-to-list-folder-contents-error-happens/m-p/618956#M28497</guid>
      <dc:creator>MBUST</dc:creator>
      <dc:date>2022-09-06T09:53:58Z</dc:date>
    </item>
    <item>
      <title>Re: When trying to list folder contents, error happens</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/When-trying-to-list-folder-contents-error-happens/m-p/618986#M28498</link>
      <description>&lt;P&gt;I see you're supplying a folder path and not a shared link and are using app authentication on this &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#files-list_folder" rel="noopener noreferrer" target="_blank"&gt;/2/files/list_folder&lt;/A&gt; call, which can cause this 'path/unsupported_content_type' error.&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;When using &lt;A href="https://www.dropbox.com/developers/reference/auth-types#app" rel="noopener noreferrer" target="_blank"&gt;app authentication&lt;/A&gt;, that is, with the app key and secret instead of an access token, you do not have access to an account directly. Using app authentication with /2/files/list_folder is instead meant for accessing the contents of a shared link.&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;So, you would need to either supply a &lt;CODE&gt;shared_link&lt;/CODE&gt; on the /2/files/list_folder call, or switch to &lt;A href="https://www.dropbox.com/developers/reference/auth-types#user" rel="noopener noreferrer" target="_blank"&gt;using user authentication&lt;/A&gt;, that is, with an access token for an account.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Aug 2022 18:13:50 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/When-trying-to-list-folder-contents-error-happens/m-p/618986#M28498</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2022-08-29T18:13:50Z</dc:date>
    </item>
    <item>
      <title>Re: When trying to list folder contents, error happens</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/When-trying-to-list-folder-contents-error-happens/m-p/619149#M28508</link>
      <description>&lt;P&gt;Hello Greg!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your help!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I thought I had to use the type of authentication use in the documentation's example (as I recall reading somewhere else here), but I see now that using the token will do&amp;nbsp;&lt;SPAN&gt;what I need. Thanks!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Aug 2022 11:42:55 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/When-trying-to-list-folder-contents-error-happens/m-p/619149#M28508</guid>
      <dc:creator>MBUST</dc:creator>
      <dc:date>2022-08-30T11:42:55Z</dc:date>
    </item>
    <item>
      <title>Re: When trying to list folder contents, error happens</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/When-trying-to-list-folder-contents-error-happens/m-p/728838#M32234</link>
      <description>&lt;P&gt;Hi Dropbox Team,&lt;BR /&gt;&lt;BR /&gt;When I try to use API:&amp;nbsp;&lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#files-list_folder" target="_blank" rel="noopener noreferrer"&gt;/2/files/list_folder&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;using App Authentication using my personal account it works successfully, but when I try same using my Company/Business account it gives following error:&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"error_summary"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"path/unsupported_content_type/.."&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"error"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;{&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;".tag"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"path"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"path"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;{&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;".tag"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"unsupported_content_type"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;SPAN&gt;&lt;BR /&gt;Could you please let us know why this difference is there?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Also Dropbox documentation mentions we can use App Authentication as well, so why it is been restricted ?&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="rohitkmk_0-1699694475045.png" style="width: 400px;"&gt;&lt;img src="https://www.dropboxforum.com/t5/image/serverpage/image-id/41982iA55950D03E83E9D8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="rohitkmk_0-1699694475045.png" alt="rohitkmk_0-1699694475045.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 11 Nov 2023 09:22:06 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/When-trying-to-list-folder-contents-error-happens/m-p/728838#M32234</guid>
      <dc:creator>rohitkmk</dc:creator>
      <dc:date>2023-11-11T09:22:06Z</dc:date>
    </item>
    <item>
      <title>Re: When trying to list folder contents, error happens</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/When-trying-to-list-folder-contents-error-happens/m-p/728906#M32236</link>
      <description>&lt;P&gt;Hi &lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1765527"&gt;@rohitkmk&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;As Greg already mentioned, app authentication can be used for information that doesn't need access to particular account (either personal or business) - listing public accessible shared links or at most password protected (the one you can provide thorough the call parameter). App Authentication identifies the application itself, but not the user that uses it! That's why you cannot use App Authentication to access data closely related to any particular account (i.e. to user, again both neither personal nor business) in any way (here we assume no any shared link points to the content; a link that can be "workaround"). To list (or do something else to) any part of account content, you need to represent somehow user having access to that content. That's what different tokens (access token and refresh token) are used for - user authentication.&lt;/P&gt;&lt;P&gt;According to your description you are already using user authentication (most probably; and by mistake label it as app authentication). If so, just keep in mind that for individual accounts providing token identifies in unique way particular user (the only user), but in case of business account (team account) it identifies in unique way the team (not user) if you have selected one team scope at least. You can solve it by removing all team specific scopes from permissions of your application (if you don't need them) or explicitly point the user using '&lt;A title="Member file access" href="https://www.dropbox.com/developers/documentation/http/teams#teams-member-file-access" target="_blank" rel="noopener"&gt;Dropbox-API-Select-User&lt;/A&gt;' header - whatever better match your case.&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PS: Just a recall - when you change permissions, you need to reauthenticate the user; such changes are NOT retroactive!&lt;/P&gt;&lt;P&gt;In any case post exact way you got to the error (like represented in OP).&lt;/P&gt;</description>
      <pubDate>Sat, 11 Nov 2023 23:05:59 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/When-trying-to-list-folder-contents-error-happens/m-p/728906#M32236</guid>
      <dc:creator>Здравко</dc:creator>
      <dc:date>2023-11-11T23:05:59Z</dc:date>
    </item>
    <item>
      <title>Re: When trying to list folder contents, error happens</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/When-trying-to-list-folder-contents-error-happens/m-p/729181#M32248</link>
      <description>&lt;P&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1765527"&gt;@rohitkmk&lt;/a&gt; I see Здравко already helpfully offered some guidance here, but if you're still having trouble with this, please feel free to share the relevant code/request that's failing with this error. Please be sure to redact any secret values, such as an app secret or access token though.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Nov 2023 15:01:17 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/When-trying-to-list-folder-contents-error-happens/m-p/729181#M32248</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2023-11-13T15:01:17Z</dc:date>
    </item>
    <item>
      <title>Re: When trying to list folder contents, error happens</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/When-trying-to-list-folder-contents-error-happens/m-p/729321#M32256</link>
      <description>&lt;P&gt;Hi @Greg,&lt;BR /&gt;&lt;BR /&gt;Please find the details of issue I am facing with&amp;nbsp;&lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#files-list_folder" target="_blank" rel="noopener noreferrer"&gt;/2/files/list_folder&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;API.&lt;BR /&gt;When I try to fetch the list of folders using this API, I only the list of folders I have created for my Apps (Apps created from Developer console). For e.g.:&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="rohitkmk_0-1699935395042.png" style="width: 400px;"&gt;&lt;img src="https://www.dropboxforum.com/t5/image/serverpage/image-id/42026iAA1699D5826A3C4C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="rohitkmk_0-1699935395042.png" alt="rohitkmk_0-1699935395042.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;But other folders to which I have access in Dropbox (created by other team members or myself), they never appear in the List folder API response.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="rohitkmk_2-1699936124409.png" style="width: 400px;"&gt;&lt;img src="https://www.dropboxforum.com/t5/image/serverpage/image-id/42028iA82B44406DFC2A30/image-size/medium?v=v2&amp;amp;px=400" role="button" title="rohitkmk_2-1699936124409.png" alt="rohitkmk_2-1699936124409.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Should I ask my Team admin to create App in Developer console, use the client id and client secret(for Bearer token generation) of this App to call APIs&lt;/P&gt;&lt;P&gt;so that I can get list of all folders and files created by the Team or do I need to have Administrator role for myself to fetch all these details?&lt;BR /&gt;Could you please guide?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="rohitkmk_3-1699936549744.png" style="width: 400px;"&gt;&lt;img src="https://www.dropboxforum.com/t5/image/serverpage/image-id/42029i74AD153320C87526/image-size/medium?v=v2&amp;amp;px=400" role="button" title="rohitkmk_3-1699936549744.png" alt="rohitkmk_3-1699936549744.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Nov 2023 04:36:54 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/When-trying-to-list-folder-contents-error-happens/m-p/729321#M32256</guid>
      <dc:creator>rohitkmk</dc:creator>
      <dc:date>2023-11-14T04:36:54Z</dc:date>
    </item>
    <item>
      <title>Re: When trying to list folder contents, error happens</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/When-trying-to-list-folder-contents-error-happens/m-p/729323#M32257</link>
      <description>&lt;P&gt;Yes &lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1765527"&gt;@rohitkmk&lt;/a&gt;, by default your user folder could be accessed only. Did you set 'Dropbox-API-Path-Root' header to change this? (your headers stay invisible on the screenshot) If not, try it. &lt;img class="lia-deferred-image lia-image-emoji" src="https://www.dropboxforum.com/html/@41457EF40051AFF130FDBFE21B496926/emoticons/1f609.png" alt=":winking_face:" title=":winking_face:" /&gt;&lt;/P&gt;&lt;P&gt;Good luck.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Nov 2023 04:50:14 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/When-trying-to-list-folder-contents-error-happens/m-p/729323#M32257</guid>
      <dc:creator>Здравко</dc:creator>
      <dc:date>2023-11-14T04:50:14Z</dc:date>
    </item>
    <item>
      <title>Re: When trying to list folder contents, error happens</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/When-trying-to-list-folder-contents-error-happens/m-p/729324#M32258</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/422790" target="_self"&gt;&lt;SPAN class=""&gt;Здравко&lt;/SPAN&gt;&lt;/A&gt;, I am using automated connector in a 3rd Party Application which uses these APIs . I cannot add&amp;nbsp;&lt;SPAN&gt;Dropbox-API-Path-Root in request header in the actual connector, so I wanted to check if we use App created by Admin to call this API, would I get to see all folders present in the workspace using list folder API call. Could you please help?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Nov 2023 04:58:23 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/When-trying-to-list-folder-contents-error-happens/m-p/729324#M32258</guid>
      <dc:creator>rohitkmk</dc:creator>
      <dc:date>2023-11-14T04:58:23Z</dc:date>
    </item>
    <item>
      <title>Re: When trying to list folder contents, error happens</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/When-trying-to-list-folder-contents-error-happens/m-p/729325#M32259</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Здравко,&amp;nbsp;&lt;BR /&gt;I am using a 3rd Party Connector which uses this Dropbox APIs. I cannot add&amp;nbsp;&lt;SPAN&gt;Dropbox-API-Path-Root in actual connector. So wanted to check if using App(to generate Bearer Token) created by Administrator work and help in getting list of all folders in workspace?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Nov 2023 05:20:00 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/When-trying-to-list-folder-contents-error-happens/m-p/729325#M32259</guid>
      <dc:creator>rohitkmk</dc:creator>
      <dc:date>2023-11-14T05:20:00Z</dc:date>
    </item>
    <item>
      <title>Re: When trying to list folder contents, error happens</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/When-trying-to-list-folder-contents-error-happens/m-p/729328#M32260</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Здравко/Greg, I am using a 3rd Party connector which internally uses these APIs, i cannot add &lt;SPAN&gt;Dropbox-API-Path-Root in the connector calls&lt;/SPAN&gt;, if I use an App created by Administrator to call the List Folder API, will the API list all the folders in response?&lt;/P&gt;</description>
      <pubDate>Tue, 14 Nov 2023 05:39:14 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/When-trying-to-list-folder-contents-error-happens/m-p/729328#M32260</guid>
      <dc:creator>rohitkmk</dc:creator>
      <dc:date>2023-11-14T05:39:14Z</dc:date>
    </item>
    <item>
      <title>Re: When trying to list folder contents, error happens</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/When-trying-to-list-folder-contents-error-happens/m-p/729407#M32264</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1765527"&gt;@rohitkmk&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;..., if I use an App created by Administrator to call the List Folder API, will the API list all the folders in response?&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;It doesn't matter who's the owner/creator of the application. What/how the application can access depends on how application authenticates (i.e. on behalves of who is authenticated) and how the calls are performed (i.e. everything that Greg and me already said above). In short - No.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1765527"&gt;@rohitkmk&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;..., I am using a 3rd Party connector which internally uses these APIs, i cannot add &lt;SPAN&gt;Dropbox-API-Path-Root in the connector calls&lt;/SPAN&gt;, ...&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Hm... Inform the creators of this connector for mentioned imperfection/bug. In fact this restricts you to access everything outside user private folder on Business account with spaces configuration (in spite you still could be able access old configurations, where no change of the root is need). The connector has to get updated definitely!&lt;/P&gt;&lt;P&gt;Hope this clarifies matter.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Nov 2023 12:45:06 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/When-trying-to-list-folder-contents-error-happens/m-p/729407#M32264</guid>
      <dc:creator>Здравко</dc:creator>
      <dc:date>2023-11-14T12:45:06Z</dc:date>
    </item>
    <item>
      <title>Re: When trying to list folder contents, error happens</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/When-trying-to-list-folder-contents-error-happens/m-p/729503#M32270</link>
      <description>&lt;P&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1765527"&gt;@rohitkmk&lt;/a&gt;&amp;nbsp;Здравко is correct; to access the team space you'd need to set the 'Dropbox-API-Path-Root' header. (It doesn't matter who owns/creates the app.) You can find more information in the &lt;A href="https://developers.dropbox.com/dbx-team-files-guide" target="_blank"&gt;Team Files Guide&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Nov 2023 17:53:06 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/When-trying-to-list-folder-contents-error-happens/m-p/729503#M32270</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2023-11-14T17:53:06Z</dc:date>
    </item>
  </channel>
</rss>

