Comments
-
@"dragon v2" wrote:which dropbox api i can use to get all the files in a particular folder Hi @"dragon v2", There is pair of access points - /2/files/list_folder/continue - usable to list entire content (files/folders) of a folder or recursive folder tree. 😉 There are equivalent calls in all supported SDKs too. Hope this…
-
@"Buff Daddy" wrote:... 1. Delete is greyed out 2. People have access doesn't show up ... Hi @"Buff Daddy", Since it's not very clear where are you trying the things, can you post some screenshots that show where the "Delete is greyed out" and where you're checking and the "People have access doesn't show up"? 🤔 Maybe, the…
-
@"Diarmaid C." wrote:... Last year, there was some sort of kerfuffle with a message offering to back up my whole computer (and virtual PC) which I may have accidentally clicked but things went awry and I think I switched back off. ... However, my computer Documents folder is where it should be, on my Mac, but THAT is also…
-
@"salesiquest23" wrote:... "com.dropbox.core.NetworkIOException: api.dropboxapi.com" For reference, our company is blocking the firewall, and the following domains are allowed to access. "https://www.dropbox.com" ... Hi @"salesiquest23", Ok, you let dropbox.com connections, but what about the mentioned api.dropboxapi.com?…
-
@"sarfaraz_k" wrote:... But in system.debug of Account Information, I m getting following error- Account Information :: {"error": "OAuth 2 \"Authorization\" header is not well-formed."} ... ... string token = 'https://api.dropbox.com/1/account/info'; HttpRequest r = new HttpRequest(); r.setEndpoint(token);…
-
@"JasonSilverDBX" wrote:... While we took quick action to deliver a fix to allow direct download from shared links (see posts here and here), it seems it did not completely solve the problem. Some users on this thread have reported success, while others have not. ... Please do continue to provide details or any additional…
-
Hi @"pavanpvl", If you're interested in scripting, take a look here for a shell script example. There you can see how a link can be 'translated' to download one as well as how a folder link can be iterated. Hope this helps.
-
Hi @"schmidjd", Number ordering impose order by numbers as such (continuous sequence of digit), not order by digit (digit by digit). In this context despite of 2 is bigger than 1, 198411 is bigger than 2022. 🙂 If 198411 represents year 1984 and month 11, better include some separator (e.g. space or underbar). Instead of…
-
@"Avielos1" wrote:... what do you mean exactly 'usage meaningless of strictness'? where do I configure the strictness? ... There is a strictConflict parameter in upload, for instance. Similar for the other upload methods. Default parameter values are fine usually; if needed to change some parameter, just take care. Hope…
-
Hi @"Avielos", The error, you received, is clear enough (oh.. can be more clear of course, but...). Different scenarios may lead to such result. The most typical one is when upload mode is update, but file revision doesn't match. If so, trace where you have lost the actual revision. Other way, leading to the same result,…
-
@"eddiejag" wrote:... I can't download the folder, I have to download each individual file, using the link ... If somebody want to download a shared folder with link as is without compression/decompression (and the associated limits), I maid a shell script that once installed can just be run and everything pointed by a…
-
@"Alex_Ch" wrote:... Is there another way to get the authorization code without that login? ... No, it's not. @"Alex_Ch" wrote:... The app only needs access to my own account Ok, so you need to perform OAuth (including receiving access code) once, as Greg said, and no more. Once you have refresh token you don't need to…
-
@"DB-Des" wrote:... I am unable to provide a timeline of if and when this feature will be implemented, however. Hi @"DB-Des", "Will be implemented"??? 🤔 What actually has to be implemented? Everything is implemented already! 🙂 The only missing thing is the documentation. How fast staff responsible for technical…
-
@"pritesh12" wrote: ... I have to do it by hand each time🥲 "Have to"??? Why? 🤔 Is there something that prevent using refresh token in your scenario? If you use official SDK refreshing is done automatically, so you don't need to change much in your code. 😉 If you use your own implementation, depending of your design skills…
-
@"santhoshkelathodi" wrote:... ( By the way, this is possible by right clicking on the respective folder), ... Exactly, in such a case you're accessing no the cloud folder, but local application folder! 🙂 Hope you can make difference. @"santhoshkelathodi" wrote:..., is your answer that it is not possible programmatically…
-
@"pritesh12" wrote:... Here as Access Token is short-lived, I must refresh it each time I work with it. ... Hi @"pritesh12", You must refresh it each time and there is no other way. Do you use refresh token for this purpose or do it by hand?
-
Hi @"santhoshkelathodi", When you didn't specify something else, the default behavior is your member folder to be used as a root (as you find it out already). Team accounts are organized in namespaces (take a look here for more info) and you can select what to be your root in Dropbox Python SDK using with_path_root method.…
-
@"Kuni11" wrote: ... The repository appeared by itself after fresh install of dropbox yesterday. I also installed Debian 12 fresh install on my computer. I think the repository came in the dropbox installation package itself. ... Hm...🤔 To be honest I have no idea how this can happen - absolutely new installed OS and…
-
@"Gene_Parmesan" wrote:... Do you know why this might be happening @"Здравко" ? Seems the 2 threads joined by Dropbox staff. They have found them too similar, probably.
-
@"Gene_Parmesan" wrote:I am not doing any uploading, I'm only getting shared links. ... Yes, and it's the initial idea, of course. The deprecated method (on behalf corresponding access point) makes on dummy upload for you. On the same place you can see the method deprecation, explicitly pointed out. The official…
-
@"Kuni11" wrote:... E: The repository 'http://linux.dropbox.com/apt stable Release' does not have a Release file. ... Hi @"Kuni11", Where you get this repository from? 🤔 There is no such and that's why you're receiving such a error. On other side: @"Kuni11" wrote:... Hit:7 http://linux.dropbox.com/debian bookworm Release…
-
Hm... strange. It seems to work. Have you tried download using direct link to the same package? Add: @"Gio" wrote: ... I just received a new iMac ... Most new Apple machines use ARM arch at present! You're trying download Intel compatible package - are you certain it's correct? (in spite that shouldn't affect the…
-
It's never good idea methods, declared as deprecated, to be in use. 'sharing_create_shared_link' is such a method! The same effect has a preceding dummy upload though. My script is just an example, that's why not feature rich, but if you want to improve yours, better include preceding dummy upload as an option instead of…
-
Get in your account folder and, if not shown the button, post a screenshot showing what's there (on the same place).
-
@"twar" wrote:... How can I fix it? ... Just follow the direction within the message you're receiving. Hm...🤔 it's strange why that discrepancy isn't resolved automatically like in many other similar cases.
-
Hi @"sydneyfr", Long lived access token is deprecated already long time ago. In spite existing long lived tokens can still be used as such, all new issued access tokens are short lived! To keep long term access, you need to handle token refresh using refresh token. If you're using official SDK, refreshing gets internally,…
-
@"Alex_Ch" wrote:... "get access token from code"?, how could I use it to get the refresh token? You cannot! Access token is generated from refresh token, not opposite!!! Didn't you read all posted till now? 🤷
-
@"Tech Dev Oldsmar" wrote:... This is a repetitive task so providing a direct link would net a lot of productivity. If the local path of Dropbox folder is only thing you're interested in, doesn't info.json work for you? 🤔 In spite opposite task (mapping local path to API path) example of something similar can be seen here.…
-
@"rahulj1", First of all make sure you're following the Dropbox path syntax (all path start with slash - except root - and slash is used as path separator, no something else). Next, make sure you're providing the correct path. If not sure, start with the root (empty path) and navigate to the nested folders (path fields…
-
Hi @"rahulj1", Do you have a folder named 'path'? 🤔 Either shared or not. 😁😉 Hope this gives direction.