<?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: ListFolderContinueAsync request throw an error in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/ListFolderContinueAsync-request-throw-an-error/m-p/210559#M10509</link>
    <description>I'm glad to hear you got this working.&lt;BR /&gt;&lt;BR /&gt;I believe the actual cause was slightly different though. Access tokens don't expire by themselves, and will fail with a 401 if they have been revoked.&lt;BR /&gt;&lt;BR /&gt;It looks like the issue was instead that the cursor you were using was for a different app (the API Explorer) than the access token you were using was for (your own app).&lt;BR /&gt;&lt;BR /&gt;When making any of these calls, the cursor and access token must be for the same app. I'll see if we can get a better error message for this particular case to avoid this confusion in the future.</description>
    <pubDate>Wed, 08 Mar 2017 18:00:26 GMT</pubDate>
    <dc:creator>Greg-DB</dc:creator>
    <dc:date>2017-03-08T18:00:26Z</dc:date>
    <item>
      <title>ListFolderContinueAsync request throw an error</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/ListFolderContinueAsync-request-throw-an-error/m-p/210200#M10483</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have use following code to listen changes but it throws an error like "Invalid Cursor", but using "dropbox-api-v2-explorer" it works perfectly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;DropboxClient dbx = new DropboxClient("MyAccessToken");
ListFolderContinueArg lfg = new ListFolderContinueArg("AAHMIjE6Xb7iOPnBsiqLXZcaI_Rws6bc9akToZqmasmjwA0QsoMX48TJ8aNKTL-5iuSYyUBo6QO4soj0NW5WvZC_9qT9qec0FZ4f0AztLdBtFH5L5PyJ-3eTFq_2BXeHM4-46MDjbEueCYf6ttLqWt93");
var list = await dbx.Files.ListFolderContinueAsync(lfg);
              &lt;/PRE&gt;&lt;P&gt;How to solve this problem?&lt;/P&gt;&lt;P&gt;Thank You&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 09:25:04 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/ListFolderContinueAsync-request-throw-an-error/m-p/210200#M10483</guid>
      <dc:creator>SrustiThakkar</dc:creator>
      <dc:date>2019-05-29T09:25:04Z</dc:date>
    </item>
    <item>
      <title>Re: ListFolderContinueAsync request throw an error</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/ListFolderContinueAsync-request-throw-an-error/m-p/210321#M10488</link>
      <description>Thanks for the report! Can you let me know where you got this cursor string? Is it possible you accidentally changed it when you copy/pasted it?&lt;BR /&gt;&lt;BR /&gt;Also, if you can share the code from the API Explorer that works for the same cursor? Just make sure to redact your access token. Thanks!</description>
      <pubDate>Tue, 07 Mar 2017 18:12:23 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/ListFolderContinueAsync-request-throw-an-error/m-p/210321#M10488</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-03-07T18:12:23Z</dc:date>
    </item>
    <item>
      <title>Re: ListFolderContinueAsync request throw an error</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/ListFolderContinueAsync-request-throw-an-error/m-p/210432#M10498</link>
      <description>&lt;P&gt;I am using following Code.&lt;/P&gt;
&lt;PRE&gt; public class SyncOperation
    {
        static DropboxClient dbx = new DropboxClient("MyAccessToken");
        public async void applyChanges()
          {           
            ListFolderContinueArg lfg = new ListFolderContinueArg("AAFm_IAxqFFyTAcg43BDIcEmCMf8fFwXGJ6GaxjXJIebJjO6hAFZw73laDO743HI8KlVWGu-INc6tmcm5qKjILbUZJOt8X8i1Ifnjc1g6G3D_W5HATTXeiVOcLAuhhSESPuZrF1QuhwYpo4_4iZ72IeL");
            var list = await dbx.Files.ListFolderContinueAsync(lfg);                    

            Console.WriteLine("Change List count : " + list.Entries.Count);
            foreach(var i in list.Entries)
            {
                Console.WriteLine(i.Name);
            }
        }
    }&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have generate Cursor from&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-api-v2-explorer/#files_list_folder/get_latest_cursor" target="_self"&gt;this&lt;/A&gt;&amp;nbsp;link and passed in the parameter. It works fine when I have test that on&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-api-v2-explorer/#files_list_folder/continue" target="_self"&gt;this&lt;/A&gt;&amp;nbsp;link. But in my code it throws "Invalid Cursor" exception.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Mar 2017 04:49:45 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/ListFolderContinueAsync-request-throw-an-error/m-p/210432#M10498</guid>
      <dc:creator>SrustiThakkar</dc:creator>
      <dc:date>2017-03-08T04:49:45Z</dc:date>
    </item>
    <item>
      <title>Re: ListFolderContinueAsync request throw an error</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/ListFolderContinueAsync-request-throw-an-error/m-p/210452#M10500</link>
      <description>&lt;P&gt;Sorry, It was my mistake. My access token was expired so that it shows Invalid Cursor. Now my problem is solved when I have update my AccesToken.&lt;/P&gt;
&lt;P&gt;I am really very sorry to waste your time.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Mar 2017 09:50:42 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/ListFolderContinueAsync-request-throw-an-error/m-p/210452#M10500</guid>
      <dc:creator>SrustiThakkar</dc:creator>
      <dc:date>2017-03-08T09:50:42Z</dc:date>
    </item>
    <item>
      <title>Re: ListFolderContinueAsync request throw an error</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/ListFolderContinueAsync-request-throw-an-error/m-p/210559#M10509</link>
      <description>I'm glad to hear you got this working.&lt;BR /&gt;&lt;BR /&gt;I believe the actual cause was slightly different though. Access tokens don't expire by themselves, and will fail with a 401 if they have been revoked.&lt;BR /&gt;&lt;BR /&gt;It looks like the issue was instead that the cursor you were using was for a different app (the API Explorer) than the access token you were using was for (your own app).&lt;BR /&gt;&lt;BR /&gt;When making any of these calls, the cursor and access token must be for the same app. I'll see if we can get a better error message for this particular case to avoid this confusion in the future.</description>
      <pubDate>Wed, 08 Mar 2017 18:00:26 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/ListFolderContinueAsync-request-throw-an-error/m-p/210559#M10509</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-03-08T18:00:26Z</dc:date>
    </item>
  </channel>
</rss>

