<?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: delta equivalent for Core API v2 in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/delta-equivalent-for-Core-API-v2/m-p/204038#M9795</link>
    <description>&lt;P&gt;It seems like in v1 /delta returned ANY new changes in the entire Dropbox, while in v2 it is only able to see a specified folder path. Am I not understanding something here?&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 26 Jan 2017 20:57:00 GMT</pubDate>
    <dc:creator>BCKI</dc:creator>
    <dc:date>2017-01-26T20:57:00Z</dc:date>
    <item>
      <title>delta equivalent for Core API v2</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/delta-equivalent-for-Core-API-v2/m-p/176292#M7028</link>
      <description>&lt;P&gt;I wonder if the following is the right way to detect remote changes in Java/Android using Core API v2:&lt;/P&gt;
&lt;PRE&gt;ListFolderGetLatestCursorResult cursor = client.files().listFolderGetLatestCursor("");&lt;BR /&gt;ListFolderResult result = client.files().listFolderContinue(cursor.getCursor());&lt;BR /&gt;&lt;BR /&gt;for (Metadata metadata : result.getEntries()) {&lt;BR /&gt;        ...&lt;BR /&gt;}&lt;/PRE&gt;
&lt;P&gt;However I have not been able to detect remote folder changes with the above logic (if I use listFolder(), that works but it appears also the loop would visit every single file). &amp;nbsp;Or should I keep cursor in persistent storage like SharePreferences?&lt;/P&gt;
&lt;P&gt;Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 09:31:44 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/delta-equivalent-for-Core-API-v2/m-p/176292#M7028</guid>
      <dc:creator>Billy S.</dc:creator>
      <dc:date>2019-05-29T09:31:44Z</dc:date>
    </item>
    <item>
      <title>Re: delta equivalent for Core API v2</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/delta-equivalent-for-Core-API-v2/m-p/176293#M7029</link>
      <description>&lt;P&gt;The equivalent of v1's getDelta (without a cursor) is listFolder, and the equivalent of getDelta (with a cursor) is listFolderContinue. Likewise, the equivalent of&amp;nbsp;getDeltaLatestCursor is&amp;nbsp;listFolderGetLatestCursor.&lt;/P&gt;
&lt;P&gt;If you want the full state of the files in the account, you should start with listFolder (as opposed to listFolderGetLatestCursor) and continue on with listFolderContinue.&lt;/P&gt;
&lt;P&gt;If you only want new changes, and don't care about existing items, then you can use&amp;nbsp;listFolderGetLatestCursor and listFolderContinue.&lt;/P&gt;
&lt;P&gt;In either case, you do need to store the last&amp;nbsp;cursor you received (e.g., from listFolderContinue), and use that when calling back to listFolderContinue again. If you get the latest cursor from&amp;nbsp;listFolderGetLatestCursor each time though, you won't see changes that&amp;nbsp;occurred in the interim.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jul 2016 01:20:12 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/delta-equivalent-for-Core-API-v2/m-p/176293#M7029</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2016-07-14T01:20:12Z</dc:date>
    </item>
    <item>
      <title>Re: delta equivalent for Core API v2</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/delta-equivalent-for-Core-API-v2/m-p/176294#M7030</link>
      <description>&lt;P&gt;Thanks for the clarification.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jul 2016 09:14:38 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/delta-equivalent-for-Core-API-v2/m-p/176294#M7030</guid>
      <dc:creator>Billy S.</dc:creator>
      <dc:date>2016-07-14T09:14:38Z</dc:date>
    </item>
    <item>
      <title>Re: delta equivalent for Core API v2</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/delta-equivalent-for-Core-API-v2/m-p/204038#M9795</link>
      <description>&lt;P&gt;It seems like in v1 /delta returned ANY new changes in the entire Dropbox, while in v2 it is only able to see a specified folder path. Am I not understanding something here?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jan 2017 20:57:00 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/delta-equivalent-for-Core-API-v2/m-p/204038#M9795</guid>
      <dc:creator>BCKI</dc:creator>
      <dc:date>2017-01-26T20:57:00Z</dc:date>
    </item>
    <item>
      <title>Re: delta equivalent for Core API v2</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/delta-equivalent-for-Core-API-v2/m-p/204042#M9796</link>
      <description>&lt;P&gt;I figured it out, thanks to this thread:&amp;nbsp;&lt;A href="https://www.dropboxforum.com/t5/API-support/list-folder-continue-Always-empty/td-p/164977" target="_blank"&gt;https://www.dropboxforum.com/t5/API-support/list-folder-continue-Always-empty/td-p/164977&lt;/A&gt; (Steve M.)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I forgot to send the recursive parameter.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&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;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jan 2017 21:11:11 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/delta-equivalent-for-Core-API-v2/m-p/204042#M9796</guid>
      <dc:creator>BCKI</dc:creator>
      <dc:date>2017-01-26T21:11:11Z</dc:date>
    </item>
  </channel>
</rss>

