<?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: Not able to access the folders inside scoped app folder in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Not-able-to-access-the-folders-inside-scoped-app-folder/m-p/697862#M31171</link>
    <description>&lt;P&gt;Hi again &lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1723539"&gt;@nive&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;You give different values for the path in Dropbox: In your first post "/Apps/myfolder/download.zip", but in second - "/Apps/CIS_CAT/CIS-CAT-Assessor-windows-GUI-jre-v4.30.0.zip"! This is important since you application name is "CISCAT", it can see only folder "/Apps/CIS_CAT/", as a root, and its content, but nothing outside. One note here: either application name missing one underbar or in the folder name is one more underbar!&amp;nbsp;🧐 I will suppose typing error. So, your application can never see a folder like "/Apps/myfolder/" or any of the folder content! Take this in mind. Here I'm not sure if my first bet above (inaccessible place) is correct; I will let you to decide.&lt;/P&gt;&lt;P&gt;Further since your application have access to "App folder" only, it appears to be the root of the accessible namespace! As a result you have to strip out from your path any leading part that contains the application folder itself - something you haven't done. Following this rule, the following line:&lt;/P&gt;&lt;PRE&gt;$dropboxFilePath = "/Apps/CIS_CAT/CIS-CAT-Assessor-windows-GUI-jre-v4.30.0.zip"&lt;/PRE&gt;&lt;P&gt;... should look something like:&lt;/P&gt;&lt;PRE&gt;$dropboxFilePath = "/CIS-CAT-Assessor-windows-GUI-jre-v4.30.0.zip"&lt;/PRE&gt;&lt;P&gt;i.e. stripped "/Apps/CIS_CAT" your application specific folder that appears as root from your application view point. You can think as this folder is automatically prepend to specified path. That's why with your code you're trying to download a file like "/Apps/CIS_CAT/Apps/CIS_CAT/CIS-CAT-Assessor-windows-GUI-jre-v4.30.0.zip", that of course doesn't exist. That's where the error comes from. &lt;img class="lia-deferred-image lia-image-emoji" src="https://www.dropboxforum.com/html/@488936AC5FA64023548E32631AFD9803/emoticons/1f600.png" alt=":grinning_face:" title=":grinning_face:" /&gt; The second bet confirmed true. &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;Hope this helps.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Add: Take in mind that access tokens are short lived. For long term access, if you need such, consider refresh token usage.&lt;/P&gt;</description>
    <pubDate>Tue, 11 Jul 2023 00:59:57 GMT</pubDate>
    <dc:creator>Здравко</dc:creator>
    <dc:date>2023-07-11T00:59:57Z</dc:date>
    <item>
      <title>Not able to access the folders inside scoped app folder</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Not-able-to-access-the-folders-inside-scoped-app-folder/m-p/697770#M31167</link>
      <description>&lt;P&gt;There is a&amp;nbsp; scoped app folder , and Im trying to access a zip file in a folder called "myfolder" in the Apps folder . In the script , I gave the dropbox path as /Apps/myfolder/download.zip , however while Im running the script it says :&lt;/P&gt;
&lt;P&gt;Invoke-RestMethod : {"error_summary": "path/not_found/...", "error": {".tag": "path", "path": {".tag": "not_found"}}}&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The app has read and write access . Why does this error occur . Also this app is created by another person and has been shared .&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jul 2023 07:50:42 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Not-able-to-access-the-folders-inside-scoped-app-folder/m-p/697770#M31167</guid>
      <dc:creator>nive</dc:creator>
      <dc:date>2023-07-19T07:50:42Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to access the folders inside scoped app folder</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Not-able-to-access-the-folders-inside-scoped-app-folder/m-p/697799#M31169</link>
      <description>&lt;P&gt;Hi &lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1723539"&gt;@nive&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;Too few info has been provided for direct answer. First of all, what type of access your application has, "App folder" or "Full Dropbox"? You gave the path where you put the zip file, but what exactly you have passed to as argument? Provide something more complete as a example - what's executing (including all params), and the result. Mask confidential things like access tokens, everything else left as is.&lt;/P&gt;&lt;P&gt;Take in mind that if you have selected "App folder", application name is important too.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PS: If I have to bet, you made 2 mistakes. 1 - file placed on inaccessible for the application place, 2 - ignoring path change as result of path rooting for path in application folder. Of course, just a guess. Let's see...&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jul 2023 20:36:26 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Not-able-to-access-the-folders-inside-scoped-app-folder/m-p/697799#M31169</guid>
      <dc:creator>Здравко</dc:creator>
      <dc:date>2023-07-10T20:36:26Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to access the folders inside scoped app folder</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Not-able-to-access-the-folders-inside-scoped-app-folder/m-p/697804#M31170</link>
      <description>&lt;P&gt;Hello @&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&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;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;My teammate has created a "App folder" and the app name is "CISCAT" .&amp;nbsp; The app has been shared and also access tokens are generated . &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;There is a folder inside /Apps called "CIS_CAT" that I need to access . This is the powershell code Im using to access the /Apps folder .&lt;/P&gt;&lt;P&gt;$dropboxToken = $response.access_token&lt;BR /&gt;$dropboxFilePath = "/Apps/CIS_CAT/CIS-CAT-Assessor-windows-GUI-jre-v4.30.0.zip"&lt;BR /&gt;$localDestination = "\\CIS-CAT\CIS-CAT-Assessor-windows-GUI-jre-v4.30.0.zip"&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;# shared drive&lt;BR /&gt;# Construct the Dropbox API request URL&lt;BR /&gt;$apiUrl = "&lt;A href="https://content.dropboxapi.com/2/files/download" target="_blank" rel="noopener"&gt;https://content.dropboxapi.com/2/files/download&lt;/A&gt;"&lt;BR /&gt;# Set the headers for the API request&lt;BR /&gt;$headers = @{&lt;BR /&gt;Authorization = "Bearer $dropboxToken"&lt;BR /&gt;"Dropbox-API-Arg" = '{"path":"' + $dropboxFilePath + '"}'&lt;BR /&gt;}&lt;BR /&gt;# Make the API request to download the file&lt;BR /&gt;Invoke-RestMethod -Uri $apiUrl -Headers $headers -OutFile $localDestination&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I get the error as "path not found" . Should the Apps folder and its contents&amp;nbsp; be shared too ?&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jul 2023 20:31:33 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Not-able-to-access-the-folders-inside-scoped-app-folder/m-p/697804#M31170</guid>
      <dc:creator>nive</dc:creator>
      <dc:date>2023-07-10T20:31:33Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to access the folders inside scoped app folder</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Not-able-to-access-the-folders-inside-scoped-app-folder/m-p/697862#M31171</link>
      <description>&lt;P&gt;Hi again &lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1723539"&gt;@nive&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;You give different values for the path in Dropbox: In your first post "/Apps/myfolder/download.zip", but in second - "/Apps/CIS_CAT/CIS-CAT-Assessor-windows-GUI-jre-v4.30.0.zip"! This is important since you application name is "CISCAT", it can see only folder "/Apps/CIS_CAT/", as a root, and its content, but nothing outside. One note here: either application name missing one underbar or in the folder name is one more underbar!&amp;nbsp;🧐 I will suppose typing error. So, your application can never see a folder like "/Apps/myfolder/" or any of the folder content! Take this in mind. Here I'm not sure if my first bet above (inaccessible place) is correct; I will let you to decide.&lt;/P&gt;&lt;P&gt;Further since your application have access to "App folder" only, it appears to be the root of the accessible namespace! As a result you have to strip out from your path any leading part that contains the application folder itself - something you haven't done. Following this rule, the following line:&lt;/P&gt;&lt;PRE&gt;$dropboxFilePath = "/Apps/CIS_CAT/CIS-CAT-Assessor-windows-GUI-jre-v4.30.0.zip"&lt;/PRE&gt;&lt;P&gt;... should look something like:&lt;/P&gt;&lt;PRE&gt;$dropboxFilePath = "/CIS-CAT-Assessor-windows-GUI-jre-v4.30.0.zip"&lt;/PRE&gt;&lt;P&gt;i.e. stripped "/Apps/CIS_CAT" your application specific folder that appears as root from your application view point. You can think as this folder is automatically prepend to specified path. That's why with your code you're trying to download a file like "/Apps/CIS_CAT/Apps/CIS_CAT/CIS-CAT-Assessor-windows-GUI-jre-v4.30.0.zip", that of course doesn't exist. That's where the error comes from. &lt;img class="lia-deferred-image lia-image-emoji" src="https://www.dropboxforum.com/html/@488936AC5FA64023548E32631AFD9803/emoticons/1f600.png" alt=":grinning_face:" title=":grinning_face:" /&gt; The second bet confirmed true. &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;Hope this helps.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Add: Take in mind that access tokens are short lived. For long term access, if you need such, consider refresh token usage.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jul 2023 00:59:57 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Not-able-to-access-the-folders-inside-scoped-app-folder/m-p/697862#M31171</guid>
      <dc:creator>Здравко</dc:creator>
      <dc:date>2023-07-11T00:59:57Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to access the folders inside scoped app folder</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Not-able-to-access-the-folders-inside-scoped-app-folder/m-p/697870#M31172</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/422790"&gt;@Здравко&lt;/a&gt;&amp;nbsp;&lt;/SPAN&gt;&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;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;Correct me if I'm wrong , So the app name "CISCAT" and the folder name inside /Apps should be the same ?&amp;nbsp; Asking so , because the folder name is CIS_CAT( with an underscore) . And thank you for the path correction , Ill try that .&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;Also when I try to create "App folder" or "full dropbox" in my dropbox account , I dont see the Apps folder getting created . is there any reason that Im not able to see it in my account ?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;Thank you for your response .&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jul 2023 04:17:19 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Not-able-to-access-the-folders-inside-scoped-app-folder/m-p/697870#M31172</guid>
      <dc:creator>nive</dc:creator>
      <dc:date>2023-07-11T04:17:19Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to access the folders inside scoped app folder</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Not-able-to-access-the-folders-inside-scoped-app-folder/m-p/697938#M31175</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1723539"&gt;@nive&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;Hello&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/422790"&gt;@Здравко&lt;/a&gt;&amp;nbsp;&lt;/SPAN&gt;&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;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;Correct me if I'm wrong , So the app name "CISCAT" and the folder name inside /Apps should be the same ?&amp;nbsp; Asking so , because the folder name is CIS_CAT( with an underscore) . And thank you for the path correction , Ill try that .&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Hm...&lt;img class="lia-deferred-image lia-image-emoji" src="https://www.dropboxforum.com/html/@9AD39CA637682E9616FBE31CDAF1B6C4/emoticons/1f914.png" alt=":thinking_face:" title=":thinking_face:" /&gt; Yes and no. In general that's the rule. As can be seen in &lt;A title="App permissions" href="https://www.dropbox.com/developers/reference/developer-guide#app-permissions" target="_blank" rel="noopener"&gt;Dropbox documentation&lt;/A&gt;:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;SPAN class=""&gt;&lt;STRONG&gt;App folder&lt;/STRONG&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;P&gt;&lt;SPAN class=""&gt;A dedicated folder &lt;U&gt;&lt;FONT color="#FF9900"&gt;named after your app&lt;/FONT&gt;&lt;/U&gt; is created within the Apps folder of a user's Dropbox. ...&lt;/SPAN&gt;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;So, Yes, when created such a folder should have the same name as the application name.&lt;/P&gt;&lt;P&gt;On other side the application name can change and that change is not retroactive. Also the user can change any shared folder name (app folder behave like a shared folder between the user and the application) without this change affect any other peer. So, No, in spite typically the same, in some corner cases, the name can be different without issue.&lt;/P&gt;&lt;P&gt;In all cases you have to make sure the particular folder belong to your application if there's any doubts. An easy way is just upload a dummy file in you application namespace root and see where this file will bring up. Another way is to list the content of your application namespace root and see what's the result matching to.&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/1723539"&gt;@nive&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;Also when I try to create "App folder" or "full dropbox" in my dropbox account , I dont see the Apps folder getting created . is there any reason that Im not able to see it in my account ?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;First, take in mind that when your application has "Full Dropbox" access, nothing is created automatic. Application' root and account' root coincide. So, you cannot expect something to be created automatically, without your application's explicit action.&lt;/P&gt;&lt;P&gt;As mentioned already, when "App Folder" is in use, application' root doesn't match to account' root (or user' home). That's why a folder, responsible for mounting application' root, gets created on application link to particular account. By default this mount point has the form "/Apps/&amp;lt;YOU APP NAME&amp;gt;", where "&amp;lt;YOU APP NAME&amp;gt;" is your application name at link moment.&lt;/P&gt;&lt;P&gt;I don't know if you noticed, I mentioned just before, that app folder "gets created on application link to particular account", not on application creation (as is in your question)! Doesn't matter that the application is created in your account context, it's not linked to there automatic! You have to link it there the same as you may link it to any other account if that's what confuses you. Did you link your application to your account? 🧐&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;Hope this sheds additional light.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jul 2023 12:24:30 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Not-able-to-access-the-folders-inside-scoped-app-folder/m-p/697938#M31175</guid>
      <dc:creator>Здравко</dc:creator>
      <dc:date>2023-07-11T12:24:30Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to access the folders inside scoped app folder</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Not-able-to-access-the-folders-inside-scoped-app-folder/m-p/698009#M31176</link>
      <description>&lt;P&gt;Hi there!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In addition to the information that Здравко&amp;nbsp;has provided, I would recommend ensuring your app is an app with "App folder" access and not "Full Dropbox" access.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can confirm this in the developer account's &lt;A href="https://www.dropbox.com/developers/apps" target="_blank" rel="noopener"&gt;App Console&lt;/A&gt;. The app should have "Permission type: App folder".&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jul 2023 16:16:30 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Not-able-to-access-the-folders-inside-scoped-app-folder/m-p/698009#M31176</guid>
      <dc:creator>DB-Des</dc:creator>
      <dc:date>2023-07-11T16:16:30Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to access the folders inside scoped app folder</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Not-able-to-access-the-folders-inside-scoped-app-folder/m-p/698074#M31180</link>
      <description>&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;Hello&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/422790" target="_blank"&gt;@Здравко ,&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much for your solution . I fixed the issue . I greatly appreciate your quick help &lt;img class="lia-deferred-image lia-image-emoji" src="https://www.dropboxforum.com/html/@FBF7D2AB59A0D6E861EBF6A36F93B7E2/emoticons/1f642.png" alt=":slightly_smiling_face:" title=":slightly_smiling_face:" /&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jul 2023 20:07:15 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Not-able-to-access-the-folders-inside-scoped-app-folder/m-p/698074#M31180</guid>
      <dc:creator>nive</dc:creator>
      <dc:date>2023-07-11T20:07:15Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to access the folders inside scoped app folder</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Not-able-to-access-the-folders-inside-scoped-app-folder/m-p/698075#M31181</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1517679"&gt;@DB-Des&lt;/a&gt;&amp;nbsp; ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for looking into it . I was able to fix it .&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jul 2023 20:08:51 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Not-able-to-access-the-folders-inside-scoped-app-folder/m-p/698075#M31181</guid>
      <dc:creator>nive</dc:creator>
      <dc:date>2023-07-11T20:08:51Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to access the folders inside scoped app folder</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Not-able-to-access-the-folders-inside-scoped-app-folder/m-p/714496#M31653</link>
      <description>&lt;P&gt;can you tell me how you fixed the issue, i am facing the same problem&lt;/P&gt;</description>
      <pubDate>Mon, 18 Sep 2023 15:06:29 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Not-able-to-access-the-folders-inside-scoped-app-folder/m-p/714496#M31653</guid>
      <dc:creator>karver</dc:creator>
      <dc:date>2023-09-18T15:06:29Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to access the folders inside scoped app folder</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Not-able-to-access-the-folders-inside-scoped-app-folder/m-p/714499#M31654</link>
      <description>&lt;P&gt;&lt;STRONG&gt;i need to download zip file from dropbox&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;this is the error i am receiving :&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;Invoke-RestMethod : {"error_summary": "path/not_found/...", "error": {".tag": "path", "path": {".tag": "not_found"}}}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;My script looks like this&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;function&lt;/SPAN&gt; &lt;SPAN&gt;Get-DropboxFolder&lt;/SPAN&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; [&lt;/SPAN&gt;&lt;SPAN&gt;CmdletBinding&lt;/SPAN&gt;&lt;SPAN&gt;()]&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;Param&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;string&lt;/SPAN&gt;&lt;SPAN&gt;]&lt;/SPAN&gt;&lt;SPAN&gt;$DropboxFolder&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;string&lt;/SPAN&gt;&lt;SPAN&gt;]&lt;/SPAN&gt;&lt;SPAN&gt;$OutputFolder&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;string&lt;/SPAN&gt;&lt;SPAN&gt;]&lt;/SPAN&gt;&lt;SPAN&gt;$FolderPath&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;$body&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;'{"path":"/'&lt;/SPAN&gt;&lt;SPAN&gt;+&lt;/SPAN&gt;&lt;SPAN&gt;$DropboxFolder&lt;/SPAN&gt;&lt;SPAN&gt;+&lt;/SPAN&gt;&lt;SPAN&gt;'"}'&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;Write-Output&lt;/SPAN&gt; &lt;SPAN&gt;$body&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;$AuthToken&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;'xxxxxxxx'&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;$token&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;"Bearer &lt;/SPAN&gt;&lt;SPAN&gt;$AuthToken&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;#The file will be downloaded as ZIP to the Temp folder of the user&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;$Tempfolder&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;$env:temp&lt;/SPAN&gt;&lt;SPAN&gt;\Downloaded_File.zip"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt; (!(&lt;/SPAN&gt;&lt;SPAN&gt;Test-Path&lt;/SPAN&gt; &lt;SPAN&gt;$FolderPath&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;Write-Verbose&lt;/SPAN&gt; &lt;SPAN&gt;"Downloading the folder…"&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;Invoke-RestMethod&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; -Method POST `&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; -Uri &lt;/SPAN&gt;&lt;SPAN&gt;"&lt;A href="https://content.dropboxapi.com/2/files/download" target="_blank"&gt;https://content.dropboxapi.com/2/files/download&lt;/A&gt;"&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; -Headers &lt;/SPAN&gt;&lt;SPAN&gt;@&lt;/SPAN&gt;&lt;SPAN&gt;{ &lt;/SPAN&gt;&lt;SPAN&gt;"Authorization"&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;$token&lt;/SPAN&gt;&lt;SPAN&gt;; &lt;/SPAN&gt;&lt;SPAN&gt;"Dropbox-API-Arg"&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;$body&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; -OutFile &lt;/SPAN&gt;&lt;SPAN&gt;$Tempfolder&lt;/SPAN&gt;&lt;SPAN&gt; -ContentType &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;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;#The file will be extracted and then removed from the temp &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;write-verbose&lt;/SPAN&gt; &lt;SPAN&gt;"Extracting the folder…"&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;Expand-Archive&lt;/SPAN&gt;&lt;SPAN&gt; -LiteralPath &lt;/SPAN&gt;&lt;SPAN&gt;$Tempfolder&lt;/SPAN&gt;&lt;SPAN&gt; -DestinationPath &lt;/SPAN&gt;&lt;SPAN&gt;$OutputFolder&lt;/SPAN&gt;&lt;SPAN&gt; -Force&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;Remove-Item&lt;/SPAN&gt; &lt;SPAN&gt;$Tempfolder&lt;/SPAN&gt;&lt;SPAN&gt; -Force&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;Write-Verbose&lt;/SPAN&gt; &lt;SPAN&gt;"The folder has been downloaded."&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; }&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;else&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;Write-Verbose&lt;/SPAN&gt; &lt;SPAN&gt;"Folder Exists"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; }&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;$DropboxFolder&lt;/SPAN&gt;&lt;SPAN&gt; &amp;nbsp; &amp;nbsp;= &lt;/SPAN&gt;&lt;SPAN&gt;"Apps/WAE-DE-dev-win11/file.zip"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;$OutputFolder&lt;/SPAN&gt;&lt;SPAN&gt; &amp;nbsp;= &lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;$env:HOMEDRIVE&lt;/SPAN&gt;&lt;SPAN&gt;\Softwares"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;$FolderPath&lt;/SPAN&gt;&lt;SPAN&gt; &amp;nbsp; &amp;nbsp;= &lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;$OutputFolder&lt;/SPAN&gt;&lt;SPAN&gt;\Software01"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;Get-DropboxFolder&lt;/SPAN&gt;&lt;SPAN&gt; -DropboxFolder &lt;/SPAN&gt;&lt;SPAN&gt;$DropboxFolder&lt;/SPAN&gt;&lt;SPAN&gt; -OutputFolder &lt;/SPAN&gt;&lt;SPAN&gt;$OutputFolder&lt;/SPAN&gt;&lt;SPAN&gt; -FolderPath &lt;/SPAN&gt;&lt;SPAN&gt;$FolderPath&lt;/SPAN&gt;&lt;SPAN&gt; -Verbose&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 18 Sep 2023 15:14:36 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Not-able-to-access-the-folders-inside-scoped-app-folder/m-p/714499#M31654</guid>
      <dc:creator>karver</dc:creator>
      <dc:date>2023-09-18T15:14:36Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to access the folders inside scoped app folder</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Not-able-to-access-the-folders-inside-scoped-app-folder/m-p/714508#M31655</link>
      <description>&lt;P&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1746543"&gt;@karver&lt;/a&gt;&amp;nbsp;Apps with the "app folder" access type can only access the contents of the special app folder that gets automatically created for it. If your app has the "app folder" access type, then it will only be able to access files in the app folder, and the root for any path value supplied by that app will automatically be the app folder root. You can find &lt;A href="https://www.dropbox.com/developers/reference/developer-guide#app-permissions" target="_blank" rel="noopener noreferrer"&gt;more information on app permissions here&lt;/A&gt;. For example, If your app has the app folder access type and you're trying to access something you can see on the Dropbox web site at &lt;CODE&gt;"/Apps/&amp;lt;app folder name&amp;gt;/folder/example.csv"&lt;/CODE&gt;, you should only send the &lt;CODE&gt;path&lt;/CODE&gt; value as &lt;CODE&gt;"/folder/example.csv"&lt;/CODE&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So in your case, instead of this line:&lt;/P&gt;
&lt;LI-CODE lang="php"&gt;$DropboxFolder    = "Apps/WAE-DE-dev-win11/file.zip"&lt;/LI-CODE&gt;
&lt;P&gt;try it like this:&lt;/P&gt;
&lt;LI-CODE lang="php"&gt;$DropboxFolder    = "file.zip"&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 18 Sep 2023 15:30:28 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Not-able-to-access-the-folders-inside-scoped-app-folder/m-p/714508#M31655</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2023-09-18T15:30:28Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to access the folders inside scoped app folder</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Not-able-to-access-the-folders-inside-scoped-app-folder/m-p/714509#M31656</link>
      <description>&lt;P&gt;Hi &lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1746543"&gt;@karver&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;You have 2 errors, at least. The first one is obvious - you have pointed something that doesn't exist (likely it's the same as explained before; not mandatory, of course). The other one is the fact that you're trying to download folder content using method suitable for files only! To be able download a folder as zip file take a look on &lt;A title="Download a folder from the user's Dropbox, as a zip file" href="https://www.dropbox.com/developers/documentation/http/documentation#files-download_zip" target="_blank" rel="noopener"&gt;/2/files/download_zip&lt;/A&gt;. &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;Hope this gives direction.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Sep 2023 15:30:46 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Not-able-to-access-the-folders-inside-scoped-app-folder/m-p/714509#M31656</guid>
      <dc:creator>Здравко</dc:creator>
      <dc:date>2023-09-18T15:30:46Z</dc:date>
    </item>
  </channel>
</rss>

