<?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: Urgent Dropbox API V2 2/files/list_folder/continue in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Urgent-Dropbox-API-V2-2-files-list-folder-continue/m-p/217798#M11390</link>
    <description>This is working properly for me. I'll be happy to help with any issues you're having with the Dropbox API, but I'll need some more information. Please reply with:&lt;BR /&gt;&lt;BR /&gt;    - the name and version of the platform and SDK/library you are using&lt;BR /&gt;    - the steps to reproduce the issue&lt;BR /&gt;    - the full text of any error or output&lt;BR /&gt;    - the relevant code snippet(s)</description>
    <pubDate>Tue, 25 Apr 2017 15:37:08 GMT</pubDate>
    <dc:creator>Greg-DB</dc:creator>
    <dc:date>2017-04-25T15:37:08Z</dc:date>
    <item>
      <title>Urgent Dropbox API V2 2/files/list_folder/continue</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Urgent-Dropbox-API-V2-2-files-list-folder-continue/m-p/217789#M11389</link>
      <description>&lt;P&gt;Suddenly I am not getting any changed set details from server. I have uploaded new folders and files in once specific folder but 2/files/list_folder/continue always returning me null entries.&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 09:23:23 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Urgent-Dropbox-API-V2-2-files-list-folder-continue/m-p/217789#M11389</guid>
      <dc:creator>syedsaadabbasi</dc:creator>
      <dc:date>2019-05-29T09:23:23Z</dc:date>
    </item>
    <item>
      <title>Re: Urgent Dropbox API V2 2/files/list_folder/continue</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Urgent-Dropbox-API-V2-2-files-list-folder-continue/m-p/217798#M11390</link>
      <description>This is working properly for me. I'll be happy to help with any issues you're having with the Dropbox API, but I'll need some more information. Please reply with:&lt;BR /&gt;&lt;BR /&gt;    - the name and version of the platform and SDK/library you are using&lt;BR /&gt;    - the steps to reproduce the issue&lt;BR /&gt;    - the full text of any error or output&lt;BR /&gt;    - the relevant code snippet(s)</description>
      <pubDate>Tue, 25 Apr 2017 15:37:08 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Urgent-Dropbox-API-V2-2-files-list-folder-continue/m-p/217798#M11390</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-04-25T15:37:08Z</dc:date>
    </item>
    <item>
      <title>Re: Urgent Dropbox API V2 2/files/list_folder/continue</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Urgent-Dropbox-API-V2-2-files-list-folder-continue/m-p/217916#M11405</link>
      <description>&lt;P&gt;Hello Greg&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Thank you for your prompt response. I am amazed that its working now. Can you please guide me how much time it would take to fetch changeset details from dropbox because sometimes it fetches quickly and sometimes&amp;nbsp;it takes our breath away by not fetching files on time.&lt;BR /&gt;This is my piece of code which execute after every 5 minutes to get changes from server.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;  var httpWebRequest = (HttpWebRequest)WebRequest.Create("https://api.dropbox.com/2/files/list_folder/continue");
                httpWebRequest.Method = "POST";
                httpWebRequest.Headers.Add("Authorization: Bearer " + GeneratedAccessToken);
                httpWebRequest.ContentType = "application/json";

                using (var streamWriter = new StreamWriter(httpWebRequest.GetRequestStream()))
                {
                    string json = new JavaScriptSerializer().Serialize(new { cursor = cursor_ });
                    streamWriter.Write(json);
                }
                string responseBody = "";
                var httpResponse = (HttpWebResponse)httpWebRequest.GetResponse();
                using (var streamReader = new StreamReader(httpResponse.GetResponseStream()))
                {
                    var result = streamReader.ReadToEnd();
                    responseBody = result;
                }&lt;/PRE&gt;</description>
      <pubDate>Wed, 26 Apr 2017 05:48:54 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Urgent-Dropbox-API-V2-2-files-list-folder-continue/m-p/217916#M11405</guid>
      <dc:creator>Syed Saad A.</dc:creator>
      <dc:date>2017-04-26T05:48:54Z</dc:date>
    </item>
    <item>
      <title>Re: Urgent Dropbox API V2 2/files/list_folder/continue</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Urgent-Dropbox-API-V2-2-files-list-folder-continue/m-p/218032#M11416</link>
      <description>&lt;P&gt;Did you set include_media_info=true on &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#files-list_folder" target="_self"&gt;/2/files/list_folder&lt;/A&gt; (not /continue) when you called it to retrieved the cursor initially? If you requested media information, there can be a delay before new entries will be returned (including from /continue), while the media information is being extracted. If not, the entries should be available almost immediately.&lt;/P&gt;</description>
      <pubDate>Wed, 26 Apr 2017 18:22:43 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Urgent-Dropbox-API-V2-2-files-list-folder-continue/m-p/218032#M11416</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-04-26T18:22:43Z</dc:date>
    </item>
  </channel>
</rss>

