Comments
-
Thanks for the report! We'll look into it.
-
You're setting 'sizeLimit: 1024', meaning that the user can only select files smaller than 1024 bytes. Looking at the types of files in the screenshot you shared, they'd presumably be larger than that, so they'd be disabled. You can should remove the 'sizeLimit' option, or set it to a suitable higher value, as needed for…
-
@"averma" I see you opened a new thread for this, so I'll follow up with you there.
-
@"Stricnis" Thanks for the feedback! There are some implementation details of how the various parts of the Dropbox back-end are built and interact that can result in this, but I've sent this along to the team to see if we can improve this in the future.
-
The client will automatically perform the refresh process for you whenever needed, on any such call, so you do not need to dispose of your existing client.
-
This should be fixed in the latest version of the official Dropbox Android app, v262.2.2. Please update to that and let us know if you're still seeing any issues. Thanks!
-
This should be fixed in the latest version of the official Dropbox Android app, v262.2.2. Please update to that and let us know if you're still seeing any issues. Thanks!
-
Thanks for the feedback! I can't make any promises, but I'll bring this up with the team to see if we can improve this in the future.
-
Dropbox user API access tokens enable access to the connected account. You can use the API to access anything in the connected account, including anything shared with that account. It also offers some functionality for interacting with content from shared links. I recommend reading the following guides for more…
-
I'm not sure I understand your question. Could you share some more context and show what you have so far as well as what isn't working, e.g., whatever error or unexpected output you're getting?
-
This is still open with the team, but I don't have an update on it. I'll follow up here once I do. There's no need to open another thread/issue for this. This thread serves as the external reference for this.
-
For the sake of privacy, some fields for some events are redacted like that. This is not a matter of your app's permissions and cannot be unredacted.
-
The Dropbox API is generally meant for users to connect to their own accounts, but Dropbox itself does offer sharing functionality that can be used to share content to users who don't have their own Dropbox accounts. In particular, shared links can be useful for that. You can also modify these links for different…
-
Things potentially interfering with your network connection wouldn't depend on how many files are in the connected account. I recommend checking for any such potential issues regardless of the file count. For reference, the Dropbox API does have a rate limiting system, but if it rejects any particular call, it would…
-
@"juhaelee" I don't have any updates on the Embedder to share, but I'll pass this along as a feature request for an access token-based option like that. I can't promise if or when that might be implemented though.
-
No, unfortunately that's not available via the API, but I'll pass this along as a feature request. I can't promise if or when that might be implemented though.
-
@"hassanrazadev" Thanks for the feedback!
-
The "changes" and "reset" responses are different conditions from different endpoints, so you'll need to implement handling for both of them. The "changes: true" response from /2/files/list_folder/longpoll just tells you when something has changed for the supplied cursor, so that you can go call…
-
Dropbox itself doesn't offer an official way to help developers find beta testers unfortunately, but hopefully there are some people here reading who would be interested in helping.
-
Thanks for following up. I can't say for sure exactly what happened here, but I'm glad to hear you got this working. For reference, any given access token, expired or not, shouldn't cause an API call to hang. The server would respond with either success or an error, or the call would eventually time out if there's a…
-
The /2/files/list_folder/longpoll endpoint should notify you of changes relevant to whatever cursor you give it. So, as long as you call /2/files/list_folder[/continue] with the necessary "Dropbox-API-Path-Root"/parameters it will notify of relevant changes. For example, if you originally called /2/files/list_folder with a…
-
That's correct, the "auth_code" variable there should contain the "authorization code", which is a single-use code from the app authorization page that the app then exchanges for an access token and optional refresh token, by calling /oauth2/token. I recommend reading the OAuth Guide and authorization documentation for…
-
I can't disclose account information, but as long as you have access to that account, you can sign in to it, and then see all of the apps owned by that account on the App Console.
-
Dropbox doesn't offer an API or other mechanism for estimating the upload/download speeds you would see in practice. Your connection speed to Dropbox depends on the routing you get between your ISP and our servers, and may be slower than your ISP's rated speeds. It also depends on a number of other variables, such as the…
-
You can use the list_folder endpoints to list and detect changes to any files in an account, including files in team folders/spaces, as long as the app and connected account have access to the files. You can find more information on app permissions here. For access to shared areas, such as team folders/spaces, the app…
-
That's correct, a "missing_scope" error indicates that the access token being used isn't authorized with the particular scope needed to access that endpoint, and so the call is not allowed. You'd instead need to get an access token with that scope authorized. A 409 error would indicate a different kind of endpoint-specific…
-
While Dropbox doesn't offer a pre-built script like this (though maybe someone else in the forum here has something to share), Dropbox does offer an API you can use for programmatically listing and moving/renaming files, among other operations, which you could use to write a script for this. You can find everything you…
-
It's not possible to add other owners/managers/admins to an app, but we can transfer ownership for you. To do so, open a ticket here from the account that currently owns the app to get this started.
-
Dropbox is switching to issuing only 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 requesting "offline" access though, in which case the app receives a "refresh token" that can be used…
-
The SwiftyDropbox SDK doesn't contain a reference to something called "cancelButton". Is that something from your project? Did you make any modifications to the SDK? In any case, I can't reproduce the issue you're seeing with the code you supplied. Also, "canHandleUrl" isn't defined; I had to add a "let". Is there…