We are aware of the issue with the badge emails resending to everyone, we apologise for the inconvenience - learn more here.

Forum Discussion

Victor L.19's avatar
Victor L.19
Explorer | Level 4
7 years ago

Issues with 2/files/list_folder/continue & cursor

I have a web app that does the following in order:

 

1. Login user via "login via dropbox" link

2. Get and save latest cursor

3. Call 2/files/list_folder/continue as needed using latest cursor, saving new cursor after api call

 

Now, no matter what changes are made to the app folder, *ALL* changes are returned when calling 2/files/list_folder/continue, not just latest changes.

 

Am i doing something wrong or out of sequence?

  • Greg-DB's avatar
    Greg-DB
    Icon for Dropbox Staff rankDropbox Staff
    We'll be happy to help with this, but need some more information. Please reply with:

    - the name and version of the platform and SDK/library you are using, if any
    - the steps to reproduce the problem, including the relevant code snippet(s)
    - the full text of any unexpected output/errors

    Thanks in advance! If you'd prefer to share privately, please feel free to open a ticket here: https://www.dropbox.com/developers/contact
    • Victor L.19's avatar
      Victor L.19
      Explorer | Level 4

      Hi Greg,


      Sorry for the lack of information.

       

      I'm using PHP with no library (just CURL)

       

      Snipper

       

      $data = '{"cursor": "' . $cursor . '"}';
                  
      $ch = curl_init('https://api.dropboxapi.com/2/files/list_folder/continue');
      curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'POST');
      curl_setopt($ch, CURLOPT_POSTFIELDS, $data); 
      curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);  
      curl_setopt($ch, CURLOPT_HTTPHEADER, array('Authorization: Bearer ' . $token, 'Content-Type: application/json'));
      $json = curl_exec($ch);
      $result = json_decode($json, true);
              
      $new_cursor = $result['cursor'];

      There are no errors. However, the next time i call list_folder/continue with the new cursor, i get a history fo all changes previously. Not just recent changes.


      Thoughts?

      • Greg-DB's avatar
        Greg-DB
        Icon for Dropbox Staff rankDropbox Staff
        Thanks! I just tried this, and I can't seem to reproduce this issue with this code though.

        Are you sure the first call is succeeding? I don't see any error handling in this snippet.

        Also, how are you copying $new_cursor to $cursor? I don't see that in this sample either. Are you sure that's working properly?

About Dropbox API Support & Feedback

Node avatar for Dropbox API Support & Feedback

Find help with the Dropbox API from other developers.

5,877 PostsLatest Activity: 35 minutes ago
325 Following

If you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X or Facebook.

For more info on available support options for your Dropbox plan, see this article.

If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!