<?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 Sync Dropbox with pc using c# in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Sync-Dropbox-with-pc-using-c/m-p/209940#M10445</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am creating Dropbox Client application using WPF and Windows Service in c#.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to listen changes done online on Dropbox Website. For that I am using Dropbox .net SDK v2. In that any method like delta? for sync online data with desktop client?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have tried "&lt;SPAN&gt;list_folder_continue" method for get last changes but it says invalid cursor.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;How can i Get list of changes in c#?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank You&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 29 May 2019 09:25:09 GMT</pubDate>
    <dc:creator>SrustiThakkar</dc:creator>
    <dc:date>2019-05-29T09:25:09Z</dc:date>
    <item>
      <title>Sync Dropbox with pc using c#</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Sync-Dropbox-with-pc-using-c/m-p/209940#M10445</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am creating Dropbox Client application using WPF and Windows Service in c#.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to listen changes done online on Dropbox Website. For that I am using Dropbox .net SDK v2. In that any method like delta? for sync online data with desktop client?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have tried "&lt;SPAN&gt;list_folder_continue" method for get last changes but it says invalid cursor.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;How can i Get list of changes in c#?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank You&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 09:25:09 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Sync-Dropbox-with-pc-using-c/m-p/209940#M10445</guid>
      <dc:creator>SrustiThakkar</dc:creator>
      <dc:date>2019-05-29T09:25:09Z</dc:date>
    </item>
    <item>
      <title>Re: Sync Dropbox with pc using c#</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Sync-Dropbox-with-pc-using-c/m-p/210091#M10468</link>
      <description>&lt;P&gt;The equivalent of API v1's "delta" functionality in API v2 is &lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_Files_Routes_FilesUserRoutes_ListFolderAsync_1.htm" target="_self"&gt;ListFolder&lt;/A&gt;&amp;nbsp;and &lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_Files_Routes_FilesUserRoutes_ListFolderContinueAsync_1.htm" target="_self"&gt;ListFolderContinue&lt;/A&gt;. You can start by calling&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_Files_Routes_FilesUserRoutes_ListFolderAsync_1.htm" target="_self"&gt;ListFolder&lt;/A&gt;, and then call back to&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_Files_Routes_FilesUserRoutes_ListFolderContinueAsync_1.htm" target="_self"&gt;ListFolderContinue&lt;/A&gt;&amp;nbsp;to get any more listings as indicated by &lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/P_Dropbox_Api_Files_ListFolderResult_HasMore.htm" target="_self"&gt;ListFolderResult.HasMore&lt;/A&gt;, or at a later point in the future to get any new entries. (And so on, using the latest cursor from&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_Files_Routes_FilesUserRoutes_ListFolderContinueAsync_1.htm" target="_self"&gt;ListFolderContinue&lt;/A&gt;&amp;nbsp;each time.)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If your call is failing with "invalid cursor", it means that the value you supplied to&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_Files_Routes_FilesUserRoutes_ListFolderContinueAsync_1.htm" target="_self"&gt;ListFolderContinue&lt;/A&gt;&amp;nbsp;wasn't recognized as a valid cursor string. You should only supply the exact string returned from&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_Files_Routes_FilesUserRoutes_ListFolderAsync_1.htm" target="_self"&gt;ListFolder&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;or&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_Files_Routes_FilesUserRoutes_ListFolderContinueAsync_1.htm" target="_self"&gt;ListFolderContinue&lt;/A&gt;&amp;nbsp;in &lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/P_Dropbox_Api_Files_ListFolderResult_Cursor.htm" target="_self"&gt;ListFolderResult.Cursor&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Mar 2017 19:45:47 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Sync-Dropbox-with-pc-using-c/m-p/210091#M10468</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-03-06T19:45:47Z</dc:date>
    </item>
    <item>
      <title>Re: Sync Dropbox with pc using c#</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Sync-Dropbox-with-pc-using-c/m-p/210194#M10482</link>
      <description>&lt;P&gt;Thank You for your quick reply.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Mar 2017 15:39:13 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Sync-Dropbox-with-pc-using-c/m-p/210194#M10482</guid>
      <dc:creator>SrustiThakkar</dc:creator>
      <dc:date>2017-03-07T15:39:13Z</dc:date>
    </item>
  </channel>
</rss>

