Comments
-
This issue with calling /2/sharing/get_shared_link_file with a password is now fixed and should be working properly. Apologies for any inconvenience this may have caused, and thanks again for bringing this to our attention.
-
This issue with calling /2/sharing/get_shared_link_file with a password is now fixed and should be working properly. Apologies for any inconvenience this may have caused, and thanks again for bringing this to our attention.
-
@"litemotiv" The 'media_info' functionality on /2/files/list_folder was deprecated earlier this year, and retired this month. You can find more information in the documentation for the 'include_media_info' parameter for /2/files/list_folder. If your app(s) need access to the media information for files like this, please…
-
@"smr_software" The Dropbox filesUpload method will just upload the data supplied to it, so to follow on what Здравко said, it sounds like the issue is occurring before the Dropbox call. It may have to do with whatever format or encoding the data is in when you get it. Since this isn't exactly about the Dropbox API itself,…
-
@"IOT_Developer" Thanks for the report! I'll be happy to look into this for you, but I can't make any promises. First, for reference, can you let me know: * Is the issue again with the length of the link returned by /2/files/get_temporary_link? * When did you start seeing this issue again? * What length were you getting…
-
It sounds like you're currently using a "Dropbox Business API" app. Access tokens for Dropbox Business API apps always allow access to the entire Business team, and can only be retrieved by team admins. If you instead want access tokens that can only access the accounts of specific members, you'll need to instead register…
-
Thanks for the additional details! I'm able to reproduce this now. It looks like this can happen when you specify a "to_path" value of a ID for a file with an extra path component appended on ("/new" in your case). Since the file ID is already for a file, you can't add an extra path component. (Files can only be nested…
-
@"a. asustor" Thanks for the report! Please try again now.
-
- No, the Dropbox API itself doesn't limit the speed like this, but there are a number of different factors that will affect the speed you see. For instance, 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. Sometimes resetting…
-
@"MarceloC" No, unfortunately support for Range requests still hasn't been implemented in the Dropbox API v2 Python SDK.
-
@"lades" I'll be happy to take a look, but I'll need some more information. Can you share the requests/responses for this? Please be sure to redact your access token though. You mentioned "attached files" but I don't see anything attached. Feel free to open an API ticket if you'd prefer to share privately. Thanks!
-
Thanks for the report! Can you please open this as a ticket? This is about the iOS app/document picker integration and not the Dropbox API itself, so I'll redirect it to the right people internally.
-
This appears to be a duplicate of your latest question in your earlier thread. I've already replied there, so I'm closing this one in favor of the earlier thread.
-
You can use the /2/sharing/list_folder_members[/continue] (or corresponding native methods if you're using an SDK) to list the users, groups, and invitees for a particular namespace/shared folder.
-
@"Dotmax" Thanks for the additional feedback!
-
Please do not share your access token. I've redacted it from your previous post, but for the sake of security, you should disable that access token since you shared it publicly. You can do so by revoking access to the app entirely, if the access token is for your account, here. Or, you can disable just that access token…
-
You can catch that not_folder error directly from the listFolder call to detect and handle that. If you do wish to make another call to check it first though, you can do so by calling getMetadata and checking the subtype of the returned Metadata.
-
It looks like you're running in to a few different issues, some of which aren't about the Dropbox API/SDK in particular, but I'll offer what help I can. NSData *fileData = [@"file data example" dataUsingEncoding:NSUTF8StringEncoding allowLossyConversation:NO]; ****error#1: No visible @interface for 'NSString' declares the…
-
We don't have specific numbers documented for the general rate limiting system. Please write your app to catch and handle any rate limit responses as described above. The rate limiting system and parameters are subject to change, so this strategy is preferred as it produces a more dynamic way of handling rate limiting, as…
-
There are a few things that may result in missing results from the search functionality on the Dropbox API like this. First, note that if you are searching for new changes, they may not be returned due to a delay from indexing. If you wait and try again later, it may be returned. Also, the interface is paginated, so if the…
-
The Dropbox API does have a general rate limiting system. It operates on a per-user account basis, not per-IP address. Also note that not all 429s and 503s indicate explicit rate limiting, but in any case that you get a 429 or 503 the best practice is to retry the request, respecting the Retry-After header if given in the…
-
@"VictorNemiro" In your screenshot, I see you're setting the "Dropbox-API-Select-Admin" header value to "Whole Team", but you should actually be setting it to the relevant team member ID value. "Whole Team" is one of the two modes supported by the Dropbox-API-Select-Admin header, but it isn't something you as the caller…
-
Yes, there are a few options here, depending on exactly what you're looking for. I've illustrated and commented on them in code: // get the name of the parent shared folder, if any // note that the parent shared folder is not necessarily the immediate parent folder of the item if (item.ParentSharedFolderId != null) {…
-
Yes, you can supply the shared link to GetSharedLinkMetadataAsync to get the SharedLinkMetadata.PathLower value back. (The access token needs to be for the same account as the one that owns the shared link. Otherwise, the value won't be present.)
-
As Здравко mentioned, /2/files/list_folder/continue will behave according to the parameters used on the initial call to /2/files/list_folder for the used cursor. It's not possible to change the parameters on an existing cursor. If you want to receive nested entries, you'll need to set 'recursive:true' on the…
-
This issue isn't reproducing for me. It's possible there's some other condition necessary to reproduce this. Can you share the code you're using to reproduce this, as well as some sample "X-Dropbox-Request-Id" response header values for these errors? That would help us investigate. Please don't post your access token…
-
The Dropbox API doesn't offer a way to get a download link that uses the web site authentication quite like you describe, but I'll pass this along as a feature request. I can't promise if or when that might be implemented though.
-
[Cross-linking for reference: https://stackoverflow.com/questions/59272078/dropbox-api-how-to-see-each-team-members-folder-permissions#59272078 ] When you list files and folders using FilesUserRoutes.ListFolderAsync like this, you're listing the contents of the member's Dropbox folder, which will include both shared…
-
The ListFolderResult.entries returned by files_list_folder is a 'list' so you can use Python's 'len' function to get its length, like this: print(len(dbx.files_list_folder('/myfolder').entries)) Please note though that you're not guaranteed to get all of the files/folders in a particular folder back in a single call…
-
Using the ListFolderMembersAsync and ListFolderMembersContinueAsync methods should let you list all of the members of a shared folder, whether or not they are also members of the same team as you. Note though that this list is paginated, and you're not guaranteed to get all results back on one page. If the…