Comments
-
Hi @"SoCalSam", When you want to just share something between VM and host (whatever they are; including VM Linux & host Windows, but not only) sharing a local folder using the virtualization system (in use) capabilities is much simpler and safer way that use of any external sync system (including Dropbox) and engages less…
-
@"Thang2000" wrote:... Also, what is the proper way to handle this, right now I'm doing: try: dbx.files_copy_v2(from_path=entry.path_display, to_path=path_to_autopdf_folder) except WriteConflictError as e: but getting "catching classes that do not inherit from baseexception is not allowed python". ... Hi @"Thang2000", In…
-
@"DB-Des" wrote:... Those are typically the reasons why invalid_access_token error would be thrown for a refresh token. @"DB-Des", Is the API that returns the 'invalid_access-token' error in such cases? 🧐 Isn't better making error text to match what actually happens? Why when error code is 400 and match to 'invalid_grant',…
-
You don't need anything else to stop the process since your haven't unlinked another application yet (again, no sign out and no device 😁). Have a nice day!
-
Hi @"lalith-mcw", Haha.. 😀 You just found out a imperfection in Dropbox Python SDK. It doesn't make distinct between access token and refresh token. As seems your refresh token is invalid for some reason, but according to the message, you received, the access token became guilty (token that doesn't exist yet). 😁 Just…
-
Hi @"Nancy F.1", You can do what you want, don't worry. Yes unlinked application cannot keep Dropbox files in sync, but as soon as you link particular application back, the Dropbox folder will get in sync. Till then the status gonna be like net is missing. About termins clarification: Device cannot be linked to Dropbox,…
-
@"feliks PROLAND" wrote:... Is it possible to stop it? Hi @"feliks PROLAND", No exactly to stop, but there is a way. You can restore all just deleted, so nothing dramatic; just do it. Dropbox keeps the things in sync; it sync file content as well as file move, creation, deletion, etc. All this gets done immediately or when…
-
Hi @"muxxum", Take a look on another thread. It may helps to you too. 😉 Good luck.
-
@"Duycode" wrote:... My app has been granted permission required scope "sharing.read". Status 409 Conflict when calling sharing/get_shared_link_metadata. ... Hi @"Duycode", I created a download script sometime ago that uses, by the way, metadata too. Just checked it and seems to work still. Use it as a guide. 😉 Hope this…
-
@"millticket", Gooood note! 😉😀 Actually "include_deleted" here is meaningless. The meaning is when you list some folder (using /2/files/list_folder) to be possible ignore already deleted items. When you're going to trace particular change (a change that happens in your path), to be deleted particular file, it has not been…
-
@"foggy748" wrote:... So, if I understand transform this word "Définir" to "D\u00e9finir" works? Correct. It should work, at least. Usually this is done automatic by most json libraries, when properly initialized. Add: To be sure that everything is correct, dump the output of JSON.stringify. 😉 Take a look here for…
-
Hi @"foggy748", Unfortunately, Dropbox API doesn't support latest specifications for using unicode during json encoding. You have to use 7-bit json ASCII encoding (the previous specifications). All symbols that don't fit in 7 bits and all special symbols have to be tagged properly. Hope this helps.
-
Hi @"TitoritoTito", Did you intentionally set your Dropbox folder as read only or this is some kind of mistake? 🧐 Try wipe this flag out from the Dropbox folder and all its content (files/subfolders). Good luck.
-
@"Scott B.26", 😀 Probably you did upgrade from Plus to Pro (no opposite), anyway... Ignore my previous post, neither Plus nor Pro account manages team spaces, so it cannot be related to your issue. That would be the case with least Standard plan. Good luck with figuring the issue.
-
@"Scott B.26" wrote:... This has been a problem for EVERY version of iPad since 2020, and every iOS during that time span. Dropbox and Bluebeam behaved perfectly good 2015-2020. It was just maybe in the fall of 2020 that it stopped working properly. ... Hi @"Scott B.26", As seems, something has happened at "fall of 2020".…
-
@"Jagadeesh", Yes, it's known bug. Take a look here. Let's hope will be fixed soon.
-
@"Megan", 😁 Good rhetoric! Yes, as seems, you have already fixed it. 😉 Files can rename properly already in preview too, not only in folder view (as was before). By the way, that was checked in different browsers. Thanks! The same test follows (without side errors and properly working download feature):
-
@"nabeards", In general it's monitored, but during weekend this monitoring is very weak. So it's likely, any move related to things mentioned here, to be performed no earlier than Monday (or even latter). Of course, Business accounts are served better, so if you want you can speed this up, probably. 😉
-
Oh... As seems, there is a some new bug in Dropbox API. Let's hope will be fixed by Dropbox soon...
-
Hi @"nabeards", I have a script targeting download of file from link or all files in shared folder pointed by link. This script enumerates all files in links to folders, of course. Take a look there and see if works for you. Good luck.
-
Hi @"JohnPT", You have a mistake! In spite not always resulted, passing non-tagged parameter obviously leads to errors of different kind. This hidden bug in your code appears on the second link (there is a predispose, but it's not the reason itself). Probably, you can figure out what's going on and how that activates your…
-
@"Nancy", Yes there is a change - before a try download wrong file was on go, now "Download" button doesn't do anything. Just shows error message: Is this the expected fix? 🤔🤦 By the way the file that shows up in the view exists!
-
@"Astrofrans" wrote:... My theory was that I could use my Dropbox and then just proxy frontend requests to it through my backend service, but I take it this is not what the API is intended for? ... Dropbox API is used to establish connection in whatever context (either users context or your own only). When you're using…
-
@"Astrofrans" wrote:... My question is: is there a way to generate Dropbox access tokens on my server without having to integrate the whole OAuth flow into my existing login procedure. Ideally, I'd like to keep my login as is, and then have the server generate a the access token, ... Hi @"Astrofrans", Yes, that's exactly…
-
@"marksmithhfx" wrote:... tsenterr (55) SSLWrite() returned error -9805 (55) is just an upload error. I can't find anything on -9805. ... Is there a list of error codes that dropbox might issue available? ... Hi @"marksmithhfx", The error, you posted, shows some platform specific error. Dropbox doesn't respond with any…
-
@"nive" wrote:... It does download the zip file ... Hi @"nive", Wow...😯 Really? That would be really surprising. 🤔 @"nive" wrote:... I grep for a particular zip file and download the zip file using "/2/files/download_zip" endpoint . ... If you take a look on /2/files/download_zip's documentation: Download a folder from the…
-
@"DavidG11" wrote:... The last time, the hasMore return true but the links array is empty. ... It's possible. In such case, you have to continue! Empty array is NOT end criteria. @"DavidG11" wrote:... I'll try with the id, if the java integration supports this. ... Take a look here. Don't forget to set direct only too.…
-
@"DavidG11" wrote:... * list_shared_links always return "true" for hasMore ... Hi @"DavidG11", Did you continue with the cursor returned? 🧐 Or, just every single time you start, it's from beginning anew. 🙂 Hope this gives direction. PS: By the way, to avoid processing long list of links, you can pass the path (or id) and…
-
@"Sapridyne" wrote: ... I'd love to be able to hide this icon when syncing, but for the life of me, can't find out how to do it. I've gone into the app and found the appropriate .icns file, renamed it and relaunched Dropbox and Finder, to no avail. ... Hi @"Sapridyne", Icons have different possible formats. To be able…
-
@"Morten Flatau" wrote:This is a line of code for use in Terminal, right? Correct.