Comments
-
@"JohnPT" wrote:... It fails on the final line the upload request. > print(dbx.files_upload(f.read(),filetouploadname, mode=dropbox.files.WriteMode("overwrite"))) I get a dbx object that looks fine in vscode. ... Just to add some clarification. Yes, for sure the code, you posted, is the only place where things can get…
-
@"JohnPT", some more info might be helpful. Your Python SDK single method call involves 2 API calls (on 2 different Dropbox servers)! It's not clear least which one fails. Some stacktrace would be fine. Does the same happen if you perform client object initialization with access token, instead of refresh token? Check that,…
-
Hi @"martinweiss", Dropbox provides Python SDK, but doesn't support any particular work environment explicitly; it's your responsibility. As about AWS Lambda, you need to add in some way any non builtin features (including Dropbox SDK and all possible its non builtin dependencies). What is missing actually can be seen in…
-
@"mansi2821" wrote:... i am uploading one file inside a3 now is there any way i can know using parent folder if there is any modification or not Yes, you can use the same way usable for monitoring single folder (your parent folder), but set the flag "recursive". In such a way all changes related to the pointed folder (the…
-
Ha ha.. 😁 you are trying to evaluate an existing link, not to create a new link. 😉 If you want to create such link take a look here. 😉 Hope this helps.
-
@"cristrod817", where is your shared link? 🙃 Did you forget what you're trying achieve - to get shared link metadata? You have to provide a shared link with that url field, not just some URL! What actually do you expect to see as metadata for the 'link' you provided? 😁 Hope this gives the next step.
-
Hi @"helloBichya", Ok, but how/where did you get your refresh token from? 🧐 You haven't shown that in your post. 🤔. ... or maybe you're trying use the code as a refresh token? 😁 They are different things. 😉 Take a look once again in documentation. Hope this helps.
-
Hi again @"Esikhoob", I see what you mean. Dropbox .NET SDK unfortunately is not designed in a way to be possible such things. The fields you're interested in are hidden/private. So no, you cannot use the provided SDK as is, but you can use the sources as a template and re-implement it (with some slight changes - expose…
-
The SDK does it for you. You don't need to do anything explicitly.
-
@"harshatupwork" wrote:... On my system, if dropbox desktop app is already logged in, is there any way to create document link using code without login ... Hi @"harshatupwork", Such a feature is supported on Linux only by now. So, if your system is Linux, then Yes, otherwise - No. @"harshatupwork" wrote:... can I get new…
-
Hi @"drop_dev", "localhost" and "localhost:4100" are different things. 😉 Aren't they? Good luck.
-
@"Greg-DB" wrote:...; it is only needed if/when you want to get an access token with a specific subset of the scopes authorized to the given refresh token when calling with 'grant_type=refresh_token'. ... and also if you want to restrict scopes available to the refresh token as a subset of all scopes available to the…
-
Hi @"johnsdimauro", Dropbox count shared space to the quota of all participants (including the owner and all invited), that's why all need free space for the same storage. Doesn't matter how the content is shared (view only or can edit). 🤷 That's it. Hope this clarifies matter.
-
Hi @"Daniel G.70", As can be seen from the error message, you're trying scopes on no scoped application! 🙋 Why? 🤔 Try to remove the last part (representing the scopes) from the request payload. Or register a new scoped application and start anew. Hope this helps.
-
@"HalHal" wrote:... Is the plugin proprietary, and so unlikely to get any help from the community? Yes and No. Yes, of course, it's Dropbox property and in this context is proprietary. No, it's FOSS so you can download the sources and fix what disturb you if/when you have/find some time. Take a look here. The plugin there…
-
Wow... I have to agree with you. There is influence of the Dropbox plugin on how Nautilus behaves and degrade its behavior. I haven't noticed it till now, but it looks like a bug in the plugin. 🤦 I don't want to disappoint you, but don't rely this bug to be fixed. Linux is NOT first class citizen here unfortunately.
-
To be honest I can't reproduce that. It works for me. Are you sure the context you're representing, in your call, really has access permission there? 🤔 You may need admin access! Who is the owner of the parent folder and if that's not you, as a member, what access you have?
-
@"HalHal", I have never seen such a behavior, you described (for any distribution). 🤷 Probably you used to use some special configuration... 🤔 so I can't comment that. @"HalHal" wrote:... I'd really rather not have to use an ampersand, as it creates output that I don't want (the process ID). ... If your concern is the…
-
Yes, that's one of the scenarios I mentioned above (when you are nesting shared folders and need to exclude derived/inherited access - when parent folder has more members than needed). @"Poui" wrote:Hi @"Здравко", So after the creation of the folder, I need to share it ... By the way, you can do it in one call. When you…
-
Hi @"HalHal", Hmm.. 🤔 When has it been: @"HalHal" wrote:... Before the update, running nautilus functioned properly, and did not block the terminal. ... Are you certain? Any application, that doesn't fork, block the terminal when runs (including Nautilus). Are you sure when you say "not block" you mean Nautilus running…
-
@"Poui" wrote:... automate the creation of a folder in a shared folder after the start of a new project. ... I don't know which endpoint I can use to remove the access of the rest of the team while only giving access to the concerned people. ... Hi @"Poui", There is no way to do that on "a folder". You need another shared…
-
Hi @"Fifis", Try following command: cd ~ && curl -L https://www.dropbox.com/download?plat=lnx.x86_64 | tar xzf - && dropbox start Is it working now? 🤔 Hope this helps.
-
@"Jay" wrote:... Is this image from the Dropbox site, mobile app, or via a third party app? ... Hmm... 🤔 Is Dropbox Embedder a mobile application or third party maybe? 🧐 Or can it be counted as part of the Dropbox site? 😁😀
-
@"drop_dev" wrote:How to access your own project through this link ('https://www.dropbox.com/dropins/embed'), ... Hi @"drop_dev", The link, you refer to, is used internally by Dropbox Embedder. Take a look on documentation how you can prepare and use that feature. As mentioned there: "The embedded content respects the…
-
@"cristrod817", as Greg pointed out, 'url' parameter is missing in your request and of course, the error message, you're receiving, notes the same. Take a look once again in the link you post above. There are 3 parameters - 1 mandatory and 2 optional. You have put only one of the optional params. 🙂 Where is the link you…
-
@"TitE" wrote: I can manually download ... @"TitE" wrote: Nope, download does not start. ... 🤔Are you aware what's going on actually? How are you running curl or wget? Is it manual or no? If they can't work you have some your network' issue! They are NOT part of Dropbox. Add: @"TitE" wrote: ...wget -O -…
-
@"dhruvin" wrote:.. There is an API endpoint that allows us to add property groups to files ad folders. But I'm not able to find any option on the dropbox web app to do the same. ... Hi @"dhruvin", Where do you know that UI doesn't use those features? 🧐 I'm pretty sure it does. Such properties are internal for any…
-
@"kareninca" wrote:... I am mostly clear on how to get the physical media to the computer but clueless as to putting it on Dropbox. ... If you have already installed Dropbox application, you don't need to know anything more. Just put all you need into the Dropbox folder (or some subfolder inside) in the same why, you would…
-
@"TitE" wrote:Nope, download does not start. ... If neither package nor offline archive downloads, that's NOT a Dropbox issue! It's your system network configuration issue. Find out what's there and fix it. You can get additional details when use -v option with either curl or wget.
-
@"jbaleta" wrote:... Is there a way that I can use another parameter or token that doesn't change? ... Hi @"jbaleta", Yes and No. Yes - You can use refresh token - a non expiring token that you can use till revoke. Access token expires; it stay valid for ~4 hours. No - to call regular API access points you need access…