Comments
-
Hi @"qaaperture", I with you about API ability to handle 'modified' times. This question is not only API related though - Dropbox core does NOT handle them! If Dropbox API just returns some modified time, it would be meaningless and for sure incorrect. Let's hope proper department will take care (I'm skeptic though).
-
@"Bk13" wrote:..., we have also added a try catch phrase inside our webhook code so it always returns 200 even if our logic fails, ... Hi @"Bk13", It's a mistake even to think in that direction! You logic should be executed after the web handler returned. A delay may trigger fault on Dropbox side even when you return…
-
Hm...🤔 How that browser error message is related to your initial question and to Dropbox at all? By the way that's C++, not Java (neither Kotlin)!
-
@"OfficeInCT" wrote:... pretty sure it ended at Dropbox had taken that functionality away. Hi @"OfficeInCT", Dropbox cannot take away something never existed. It's impossible to determine root folder size and has never been possible. 🤷 I'm not sure what Dropbox staff is trying to explain actually - probably they cannot…
-
Unfortunately, I cannot reproduce your issue @"Vlopez1". In spite of some imperfection in your code, listing shared links works. There is only one error: @"Vlopez1" wrote:... ... hasher = DropboxContentHasher()...def upload_large_file(file_path, customer_name):... dbx.files_upload(f.read(), '/' + customer_name)... Where…
-
@"Vlopez1" wrote: I have timeouts which may be related to uploading files using upload sessions.... File "/deployed_ws/ros1/key_external_notifications/lib/python3/dist-packages/key_external_notifications/dropbox_api.py", line 97, in create_shared_link_with_password links = dbx.sharing_list_shared_links(file_name,…
-
@"nuttygamer", As zacv noted container formats are independent of encoding formats, despite designed and usually used in some optional relations - you erroneous assume some mandatory relationship that don't exist! In particular HEVC encoding may be packed in any container format (including .mov). 😉 Did you check what…
-
@"tralibex" wrote:... Are there any limitations of how many simultaneously downloads, bandwidth or requests can be made? Hi @"tralibex", Your question includes (or may do it as presented) too many things, so difficult to get a single (universal) answer. Mark did clarify already the links limitations if you use API calls…
-
@"Nico-Uretek" wrote:... Yes i'm using (french) accents and just the - characters in my name files and it would take a lot of time and devs to remove all of them... No, no, this is not and cannot be an issue - it's not a surrogate pair! There is something else though: @"Nico-Uretek" wrote:... String dbApiArg = '{\"path\":…
-
@"Nico-Uretek" wrote:..., Dropbox block now every special character and ... (not in accordance with the documentation haha). ... @"Nico-Uretek", It depends on what you mean here. It's according Dropbox documentation, but NOT according standards. For instance, Dropbox (note the usage of Dropbox, not Dropbox API nor SDK)…
-
@"simotin13" wrote:... --header "Dropbox-API-Arg: {\"path\":\"/aaa/あいうえお/sample.jpg\"}" → This request doesn't work. ... Hi @"simotin13", This for sure wouldn't work. Dropbox doesn't support modern JSON encoding (RFC-8259) with UTF-8 inside! Dropbox supports the old JSON tagging style encoding only - take a look here. Just…
-
@"benhy" wrote:..., and this was Exfat (we use that because we use Windows and Mac). ... There is no chance to share physical storage in such a way 🤷. You may, but need to "share" the application too. Setup a network drive - either pre-built or some old PC with installed Ubuntu (for instance) - and share the Dropbox folder…
-
Hi @"benhy", Unfortunately, Dropbox doesn't support sync in different folders or drives. The only place Dropbox sync is the Dropbox folder and all content inside, but nothing outside. There is a workaround though. You may combine physical drives in virtual bigger drive - RAID. 😉 RAID would work on all Dropbox supported…
-
If you want, once listing folders as denoted by Greg, you may check all folders for available tags and filter them accordingly (on your own). @"prabhat1999", There is a way. 😉 In your case, try search with query "#testingtag". It's something undocumented. Hope this helps.
-
@"prabhat1999" wrote:how to seach with tag name ... I want to search for folders with this tag @"prabhat1999", It's impossible, unfortunately. Dropbox API (including Python SDK, you are using) doesn't provide such a feature.
-
Hi @"rororo12", Can you perform arbitrary HTTP request to Dropbox server using so configured HttpClient in your code? It sounds like you have some platform issues likely came up recently; check this. Make sure you have working network connection able to perform HTTP request that successfully roots to Dropbox server in your…
-
Again, it's one to one the yous. Only the mistakes, I mentioned, have been fixed - nothing more. ADD: I see you regularly place wrong quotes! Check what you have used on your side.
-
I don't have anything to share. The only thing I changed is the background - didn't look well on dark background - nothing else. Probably you have other mistakes. Can you share the place where you have tested this dummy folder? (link to the place, don't cite the node) ADD: By the way: @"barbarartist" wrote:... ”></a> I…
-
@"barbarartist" wrote:This is to an empty dummy file: <a href=”https://www.dropbox.com/scl/fo/yndx3xyfkwczmmjbzegqz/AP5IuRHPTk67Oyl-MTG9ROw?rlkey=gam3ghcw8c41hhhx4v2p8jn8m&st=4yb20pn5&dl=0/>Dummy Folder</a> This is how I formatted the link to the other file full of photos. When I copied the link to my webpage, the link…
-
For sure: I have never invite you to send on public place some private info!!! Even your email posted here is BAD thing! Erase it. That what I invite you is to post "nonworking example". 😉 You can use a link pointing some dummy file. The only mandatory thing is to show the issue - i.e. the issue to be clear. Hope it's a…
-
@"barbarartist", Since you don't want to show me nonworking example I cannot say much more. About the message for wrong formatting (I suppose on your forum post), just don't copy formatted text, but plain text only and you won't have any issues (clear the formatting when needed - seems forum imperfection). This message has…
-
@"barbarartist" wrote:... But instead of linking to the dropbox file of images, I am getting a 404 Not Found. ... Hi @"barbarartist", There is no such thing like "file of images"! There could be a link to image file or link to folder of images files. Anyway... your issue is something completely different! On OP, the issue…
-
@" blueli" wrote:... But I can only get the latest added items from the cursor from step 0 for the step 3 According your explanation, that's what you try to do. Right? Correct me if I misunderstood something. Once you keep the CURRENT last cursor, received from the last call to /2/files/list_folder/continue, the next time…
-
@" blueli" wrote:... But how can we obtain the correct cursor (previous state) for step 3 to retrieve the latest added files for step 4? ... Hi @" blueli", You can do it in the same way as you have it done in step 2. 😉 The result has the same format. Hope this helps.
-
Hi @"mohit123", Take a look here. You can see there one of the possible ways (relatively simplest). Check If that works for you. Good lock.
-
@"ReallyAnnoyedWithDragon" wrote: ... I never did anything to make this happen, and I cannot get rid of it. ... Hm... 🤔 @"ReallyAnnoyedWithDragon" @, Is it possible Dropbox application has installed itself? I don't think so. In this context, is there something that prevent you uninstall it (wipe it out of your applications…
-
@"bvl96" wrote: hello everyone, how do i download the android apk for dropbox from their website? Hi @"bvl96", Direct download is not possible from Dropbox website (don't ask me why) nor from Google play site. As Rich pointed, you can install the application using Google Play. If on your device is not available Google play…
-
@"bipulkumar3103" wrote:... I don't find any permission option for team scope .I only get individual scope option Hi @"bipulkumar3103", Take a look on the bottom of the same page where you see the individual scopes options. Individual scopes are on the top, next OpenID scopes, and finally all team scopes (including…
-
@"Jean-Charles M.1" wrote:Yes I am sure that both values are indeed express in MB. MB: " a unit of computer memory or data storage capacity equal to 1,048,576 (220) bytes" @"Jean-Charles M.1", Just for your info: Apple usually uses SI style units in its products, while Dropbox uses binary style units! So, keeping in mind…
-
@"prabhat1999" wrote:... I get error stating Failed to get tags: 409 - {"error_summary": "path/not_file/...", "error": {".tag": "path", "path": {".tag": "not_file"}}} ... Hi @"prabhat1999", If you take a look to the documentation: ... not_file Void We were expecting a file, but the given path refers to something that isn't…