Learn how to make the most out of the Dropbox Community here 💙!
Forum Discussion
ShinehahGnolaum
7 years agoHelpful | Level 7
How do I know when there has been a change in the user's Dropbox account?
How do I know when there has been a change in the user's Dropbox account made from outside of the current iOS device such as a new file created? I also need to know if the user logged out, or if a d...
ShinehahGnolaum
7 years agoHelpful | Level 7
I'm using SwiftyDropbox in iOS in my own app. I am wondering what happens if I send a command to Dropbox when the user had logged out. If I set a variable to hold the currently logged in DropboxClient, would the variable become nil if the user had logged out of Dropbox? Is it possible for me to perform an action in Dropbox, thinking that the user is still logged in to Dropbox when in fact he had logged out?
Greg-DB
Dropbox Staff
7 years agoInside of your own app, you control whether or not the user is "logged in". If/when the user indicates that they want to log out, you can have the app throw away any copy of the access token/client it has, and call DropboxClientsManager.unlinkClients to remove it from DropboxClientsManager. You can also optionally call tokenRevoke first to revoke the access token on the Dropbox API servers as well.
And yes, you would set a response handler for the list folder methods, just like other RPC methods in the SDK, as seen in the documentation.
- ShinehahGnolaum7 years agoHelpful | Level 7
How do I tell from the result I get in the closure I pass to the response method what the changes are? In the closure for the response method I set for listFolder, .entries is thel list of all the current files and folders. What would entries be for the response of the listFolderContinue methods? Would .entries also be the list of current files and folders, or do I get specific information like what had been added and what had been deleted since my last query?
- Greg-DB7 years ago
Dropbox Staff
Accessing the ListFolderResult.entries as returned by listFolder is the right way to begin listing the contents of a folder. Note that it is not guaranteed to return all of the results though. The interface is paginated, so you may need to call back to listFolderContinue to get more entries. (It also returns a ListFolderResult.)
Likewise, you can later call back to listFolderContinue again to get any further changes. It will return only things that have changed since your previous call, based on the passed cursor. Please refer to the listFolder documentation for information on how to use these.
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.5,973 PostsLatest Activity: 57 minutes ago
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!