<?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: how to get list of newly added files via api in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/how-to-get-list-of-newly-added-files-via-api/m-p/617376#M28434</link>
    <description>&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Longpoll only returns true or false, but I need a list of new files&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
    <pubDate>Mon, 22 Aug 2022 09:45:55 GMT</pubDate>
    <dc:creator>maxior</dc:creator>
    <dc:date>2022-08-22T09:45:55Z</dc:date>
    <item>
      <title>how to get list of newly added files via api</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/how-to-get-list-of-newly-added-files-via-api/m-p/617375#M28433</link>
      <description>&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;How to get list of newly added files via api ?&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Aug 2022 00:37:28 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/how-to-get-list-of-newly-added-files-via-api/m-p/617375#M28433</guid>
      <dc:creator>maxior</dc:creator>
      <dc:date>2022-08-23T00:37:28Z</dc:date>
    </item>
    <item>
      <title>Re: how to get list of newly added files via api</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/how-to-get-list-of-newly-added-files-via-api/m-p/617376#M28434</link>
      <description>&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Longpoll only returns true or false, but I need a list of new files&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 22 Aug 2022 09:45:55 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/how-to-get-list-of-newly-added-files-via-api/m-p/617376#M28434</guid>
      <dc:creator>maxior</dc:creator>
      <dc:date>2022-08-22T09:45:55Z</dc:date>
    </item>
    <item>
      <title>Re: how to get list of newly added files via api</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/how-to-get-list-of-newly-added-files-via-api/m-p/617410#M28436</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1567425"&gt;@maxior&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Longpoll only returns true or false, but I need a list of new files&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;That's right - &lt;A title="A longpoll endpoint to wait for changes on an account" href="https://www.dropbox.com/developers/documentation/http/documentation#files-list_folder-longpoll" target="_blank" rel="noopener"&gt;2/files/list_folder/longpoll&lt;/A&gt; only inform you for changes (is something changed or not). As noted in its description, could be used in combination with &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#files-list_folder-continue" target="_blank" rel="noopener"&gt;2/files/list_folder/continue&lt;/A&gt; to get the recent changes. Before calling "longpull", you must make available valid cursor pointing the last state, so the same cursor can be used ones you get new changes to clarify what's changed. Such a cursor could be result of last call to list_folder/continue (preferred) or &lt;A title="A way to quickly get a cursor for the folder's state." href="https://www.dropbox.com/developers/documentation/http/documentation#files-list_folder-get_latest_cursor" target="_blank" rel="noopener"&gt;2/files/list_folder/get_latest_cursor&lt;/A&gt; (good choice when called for the first time and no need to enumerate entire content). If you are using some SDK, corresponding methods are available.&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Aug 2022 12:18:25 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/how-to-get-list-of-newly-added-files-via-api/m-p/617410#M28436</guid>
      <dc:creator>Здравко</dc:creator>
      <dc:date>2022-08-22T12:18:25Z</dc:date>
    </item>
    <item>
      <title>Re: how to get list of newly added files via api</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/how-to-get-list-of-newly-added-files-via-api/m-p/617434#M28438</link>
      <description>&lt;P&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1567425"&gt;@maxior&lt;/a&gt;&amp;nbsp;Здравко is correct. Additionally, you may find the &lt;A href="https://developers.dropbox.com/dbx-file-access-guide" target="_blank"&gt;File Access Guide&lt;/A&gt; and &lt;A href="https://developers.dropbox.com/detecting-changes-guide" target="_blank"&gt;Detecting Changes Guide&lt;/A&gt; useful&lt;/P&gt;</description>
      <pubDate>Mon, 22 Aug 2022 13:27:33 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/how-to-get-list-of-newly-added-files-via-api/m-p/617434#M28438</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2022-08-22T13:27:33Z</dc:date>
    </item>
  </channel>
</rss>

