<?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: list_folder results different from this morning in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/list-folder-results-different-from-this-morning/m-p/720218#M31860</link>
    <description>&lt;P&gt;The &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;/continue&lt;/A&gt;] functionality is paginated and isn't guaranteed to return all of the entries in a single response. There are a few factors that can affect what/how much is returned in a single call, and that can vary over time due to a number of factors, e.g., as the state and contents of the account changes, etc, so you need to make sure you always have that implemented properly as documented in the above links.&lt;/P&gt;</description>
    <pubDate>Tue, 10 Oct 2023 18:08:50 GMT</pubDate>
    <dc:creator>Greg-DB</dc:creator>
    <dc:date>2023-10-10T18:08:50Z</dc:date>
    <item>
      <title>list_folder results different from this morning</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/list-folder-results-different-from-this-morning/m-p/720152#M31857</link>
      <description>&lt;P&gt;when performing an api call files_list_folder&amp;nbsp; with the path /Apps/YPDB2023&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;up till this morning it would return the subfolder name and a list of all the files - but now I just get the subfolder name and a "has more" = true and a cursor - which I can then use to&amp;nbsp;/files_list_folder/continue - and then I can see the files themselves..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To troubleshoot - I've bypassed my code and tried this directly on the API explorer and get the same thing - it's only in this folder - other folders behave as normal&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;dropbox.github.io/dropbox-api-v2-explorer/#files_list_folder&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;{
  "entries": [
    {
      ".tag": "folder",
      "name": "done",
      "path_lower": "/apps/ypdb2023/done",
      "path_display": "/Apps/YPDB2023/done",
      "id": "id:----"
    }
  ],
  "cursor": "---",
  "has_more": true
}&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;and then using that cursor - via&amp;nbsp;dropbox.github.io/dropbox-api-v2-explorer/#files_list_folder/continue&lt;/P&gt;&lt;PRE&gt;{
  "entries": [
    {
      ".tag": "file",
      "name": "10-10-2023 16-26-03.txt",
      "path_lower": "/apps/ypdb2023/10-10-2023 16-26-03.txt",
      "path_display": "/Apps/YPDB2023/10-10-2023 16-26-03.txt",
      "id": "------",
      "client_modified": "2023-10-10T15:26:03Z",
      "server_modified": "2023-10-10T15:26:05Z",
      "rev": "----",
      "size": 2981,
      "is_downloadable": true,
      "content_hash": "----"
    }
  ],
  "cursor": "----",
  "has_more": false
}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;if I create a test folder in the dropbox root and do the same calls it behaves as normal -&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;{
  "entries": [
    {
      ".tag": "folder",
      "name": "test_subfolder",
      "path_lower": "/tester/test_subfolder",
      "path_display": "/tester/test_subfolder",
      "id": "id:-----"
    },
    {
      ".tag": "file",
      "name": "test file.txt",
      "path_lower": "/tester/test file.txt",
      "path_display": "/tester/test file.txt",
      "id": "id::-----",
      "client_modified": "2023-10-10T15:38:24Z",
      "server_modified": "2023-10-10T15:38:50Z",
      "rev": "----",
      "size": 4,
      "is_downloadable": true,
      "content_hash": "-----"
    }
  ],
  "cursor": "----",
  "has_more": false
}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;very odd -&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Oct 2023 15:41:19 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/list-folder-results-different-from-this-morning/m-p/720152#M31857</guid>
      <dc:creator>bluesock</dc:creator>
      <dc:date>2023-10-10T15:41:19Z</dc:date>
    </item>
    <item>
      <title>Re: list_folder results different from this morning</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/list-folder-results-different-from-this-morning/m-p/720218#M31860</link>
      <description>&lt;P&gt;The &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;/continue&lt;/A&gt;] functionality is paginated and isn't guaranteed to return all of the entries in a single response. There are a few factors that can affect what/how much is returned in a single call, and that can vary over time due to a number of factors, e.g., as the state and contents of the account changes, etc, so you need to make sure you always have that implemented properly as documented in the above links.&lt;/P&gt;</description>
      <pubDate>Tue, 10 Oct 2023 18:08:50 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/list-folder-results-different-from-this-morning/m-p/720218#M31860</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2023-10-10T18:08:50Z</dc:date>
    </item>
    <item>
      <title>Re: list_folder results different from this morning</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/list-folder-results-different-from-this-morning/m-p/720423#M31863</link>
      <description>&lt;P&gt;thanks&lt;/P&gt;</description>
      <pubDate>Wed, 11 Oct 2023 08:59:47 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/list-folder-results-different-from-this-morning/m-p/720423#M31863</guid>
      <dc:creator>bluesock</dc:creator>
      <dc:date>2023-10-11T08:59:47Z</dc:date>
    </item>
  </channel>
</rss>

