Comments
-
Apologies for the trouble with the documentation. You can find the latest documentation for the .NET SDK here. For instance, here's the link for CreateFolderV2Async, for ShareFolderAsync, and for AddFolderMemberAsync. If you want to add a member as an editor, you should set AccessLevel.Editor.Instance as the accessLevel in…
-
@"GustavoCR" We just finished rolling out a fix for this. Please try again now.
-
@"Huezzer" That should be finished rolling out now.
-
@"Huezzer" Thanks for the note! A fix was released, but it may not be fully rolled out yet. I'll check in on that.
-
@"zakariaenabi" I'm not sure I understand what you mean when you say "which files exactly do I need in my program now?". For information on how to handle the authorization flow, please refer to the resources in my earlier messages in this thread. And if you're using one of the official Dropbox SDKs, be sure to refer to the…
-
@"luigiafassina" Can you clarify what you mean when you say "they disappeared for all the users in all my envs"? What exactly disappeared and how? The refresh tokens are strings that you should store and re-use. Apps and users can revoke refresh tokens on demand, though you should still have the refresh token strings…
-
@"calexmac" An 'expired_access_token' error indicates that the particular short-lived access token you used has expired, so you'd need to get a new one to continue making API calls. If you have a refresh token, you can do so by calling /oauth2/token with grant_type=refresh_token. Please refer to the messages at the…
-
To access content in your Dropbox, such as your backup data, you'll need to specify the path relative to the root. Do not add additional components not seen when browsing your Dropbox, such as "backups". The folder for backed up data is the name of the backup. For instance, if I have a backup named "Mac", containing a…
-
[Cross-linking for reference: https://stackoverflow.com/questions/74534382/dropbox-automatic-refresh-token-using-oauth-2-0-with-offlineaccess ] @"mauro991" Здравко is correct; refresh tokens are long-lived, so you should re-use it. I see in your code you are already requesting offline access and getting back a refresh…
-
Thanks for reporting this issue. This issue is now fixed and should be working properly. Apologies for any inconvenience this may have caused.
-
Thanks for reporting this issue. This issue is now fixed and should be working properly. Apologies for any inconvenience this may have caused.
-
There was a service disruption earlier that may have caused this issue, however I can't say for sure based on this error output. That disruption is resolved now, so please let me know if you're still seeing this issue. Thanks!
-
Thanks for reporting this issue. This issue is now fixed and should be working properly. Apologies for any inconvenience this may have caused.
-
Thanks for reporting this issue. This issue is now fixed and should be working properly. Apologies for any inconvenience this may have caused.
-
Thanks for reporting this issue. This issue is now fixed and should be working properly. Apologies for any inconvenience this may have caused.
-
@"Faulk" Здравко is right; it sounds like you want to access the "team space". You can certainly do so from any account that has access to the team space, but by default, API calls operate in the "member folder" of the connected account, not the team space. You can configure API calls to operate in the team space instead…
-
As Здравко noted, Dropbox is no longer offering the option for creating new long-lived access tokens. Dropbox is switching to only issuing short-lived access tokens (and optional refresh tokens) instead of long-lived access tokens. You can find more information on this migration here. Apps can still get long-term access by…
-
@"sjyuenger" Здравко is correct, you can interact with the Dropbox folder on the local filesystem normally. And this section of the forum is for use of the Dropbox API though, not local filesystems, so I'm afraid I can't offer help with that.
-
@"Polas" Здравко is correct; new Dropbox access tokens are not persistent. Dropbox is no longer offering the option for creating new long-lived access tokens. Dropbox is switching to only issuing short-lived access tokens (and optional refresh tokens) instead of long-lived access tokens. You can find more information on…
-
Thanks for the feedback! I'll send this along as a feature request.
-
@"eperic" The links in the first list in my previous message refer to different methods that can be used to retrieve shared folder IDs for shared folders. Exactly what approach one would take would depend on what the scenario is. For example, to get the shared folder ID of a shared folder at a given path, one would use…
-
Check out the web_file_browser example for a sample of handling the authorization flow directly in a web app. That example doesn't happen to request offline access (to get a refresh token) but you can do so the same way if needed, using withTokenAccessType.
-
No, it is not possible to fully automate the process of getting a refresh token. The user must authorize the app using the OAuth app authorization flow built into your app in order for the app to receive the resulting access token and optional refresh token. This needs to be done manually by the user at least once per…
-
@"Gregg W.1" That would be a matter of the Dropbox desktop client, but I can only really help with the Dropbox API itself, so I'm afraid I can't offer insight on that. You may want to contact support for help regarding the desktop client behavior. Apologies I can't be of more help in that regard!
-
The Dropbox API does allow you to upload and download restricted files like this, e.g., using upload and download. Some operations, like createSharedLinkWithSettings, will fail for restricted files though. Using the EICAR test file(s) is a good way to test this.
-
No, unfortunately Dropbox doesn't offer an interface for programmatically managing this setting, such as to set a file to "offline", but I'll pass this along as a feature request. I can't promise if or when that might be implemented though.
-
You can get the shared folder IDs for shared folders using a number of different pieces of the Dropbox API. For instance, via the Dropbox Python SDK: * files_get_metadata * files_list_folder/files_list_folder_continue * sharing_list_folders/sharing_list_folders_continue The following guides may be helpful: *…
-
Thanks for the feedback. I posted an example in this thread that you may find useful.
-
No, there are no charges to apply for or receive production status for an app. That process is entirely free.
-
The Embedder doesn't offer the ability to make any changes like this, but I'll pass this along as a feature request. I can't promise if or when that might be implemented though.