Comments
-
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…
-
@"josuegomes" wrote:... Possible solutions are: persist the current offset together with the serssion id. Or call Append with an invalid offset (eg 0), it returns the `UploadSessionOffsetError` error with the correct offset. Is it ok to rely on the UploadSessionOffsetError? Hi @"josuegomes", Yes, that's are the possible…
-
@"koradev_shane" wrote:... From what I understand of the OAuth flow, user interaction is required to authenticate (visit auth URL, tap Agree/Allow, be redirected with the `code` value in query and then use dbx SDK to getAccessTokenWithCode). Hi @"koradev_shane", Yes, you need to perform OAuth flow least once. It depend is…
-
Hi @"superheroEK", If you "want to copy: https://ceridap.eu/en/documents-on-the-covid-19-emergency/", then just copy it. 😉 The following is part of that page responsible for link embedding (as is; together with the link): <script type="text/javascript" src="https://www.dropbox.com/static/api/2/dropins.js" id="dropboxjs"…
-
@"Здравко" wrote:...😉 Make sure that python command exists and points the correct executable (sometimes only python3 exists; create proper link if needed too). Hope this helps to some extent. @"PIXIP", Did you do it? 🤔 What actually happens when you type 'python' in terminal? (just for test) Also can be seen that you miss…
-
Hi again @"Poui", In general, for either team or personal accounts, you can share project folder between team member/users and that folder will be hidden for all other that don't participate to particular folder sharing. For team account, it might be easier a project folder to be created by the admin and give to desired…
-
@"Greg-DB" wrote:... ... request.Headers.Add("Range", "bytes=0-10"); // this requests the first 11 bytes of the file ... ... Hi @"pear0533", You don't actually need a range starting from zero. You can start with regular API call and if that breaks for some reason then go forward with range(s). Let's say you have to…
-
Hi @"Poui", Using /2/files/create_folder_v2, you're creating a regular folder, not shared one! 😉 That's why there is not a 'shared_folder_id' in metadata.sharing_info. This field is optional and exists only when real shared folder is "on focus" (no the case now). You can share a existing folder (or create new shared…
-
Hi @"dhruvin", Non downloadable files (of any kind) may only be exported. You cannot change this. Good luck.
-
Hi again @"PIXIP", You just enlightened a bug in Dropbox Java SDK. 😁 Yes, Dropbox rely on deprecated packages for a long time. Actually since Python3.3, some of the packages used here are designated as deprecated. In Python3.9 those packages are already dropped. 🤷 That's where your error comes from. Let's hope Dropbox…
-
Hi @"abhinovClairvoyant2", Did you set proper root namespace for your call? 🧐😉 Hope this gives direction.
-
Do you have Python installed at all? 🤔
-
Hi @"TitE", You can try the same solution that works here. 😉 Good luck.
-
The example on the page, you posted, uses 'curl' shell command. That's the way (one of all actually) body to be represented. You're working with 'fetch' command in javascript, not shell! Just different things! 😉 Pay attention on the proper documentation. None of these parameters (how they are named) can be seen by Dropbox…
-
@"sr_c" wrote: ...},data: filedata}... @"sr_c", When you are preparing a request body with appropriate data, you have to set those data. What actually is going on here? 🤔 You have already prepared request body (that you named as 'filedata' - incorrect name and probably confusing)! In this context instead of setting 'data',…
-
Hi @"shibananda", Do something like following (step by step - line by line): $ curl -L https://www.dropbox.com/download?dl=packages/ubuntu/dropbox_2020.03.04_amd64.deb > ~/dropbox.deb $ sudo apt-get install ~/dropbox.deb $ rm ~/dropbox.deb $ dropbox stop $ rm -rf ~/.dropbox* $ dropbox start -i Execute all commands as they…
-
Hi @"rweckey", You're hitting in painful place of Dropbox API documentation - partial documenting. It's mentioned that "shared_link_already_exists" is optional field of the union, but no anything about what this depends on - that would let probability control. When exists, you can get the metadata, otherwise, as you have…
-
@"pkd" wrote:... is there a way to get refresh token directly on Dropbox website without running some other script? No, there isn't - not yet at least. PS: Just to mention, if you decide usage of non PKCE OAuth flow, application secret becomes mandatory (in spite optional otherwise)! In such case you would need to add it,…
-
@"pkd", Did you get some error or something? 🧐 The refresh token gets in the configuration file (on OAuth flow success) and stay there, where it's read on command start. The file gets updated whenever needed to minimize needed refreshes. Take a look in the configuration file (named 'cert.json', in my script, residing in…
-
@"eminem18753" wrote:Hi, but why if I upload some stuff to dropbox, only the "used" changed, but the "allocation:used" doesn't change. ... @"eminem18753", Where did you upload your stuff? 🤔 In some team folder or into some your private folder (including your home folder)? @"eminem18753" wrote:... Moreover, If the user…
-
There is: https://www.dropbox.com/2/browse_zip_downloads/get_zip_download_url ... but it's undocumented and for internal use only. 🤷
-
@"1575475" wrote:... No job is running (even after polling for about 10 Minutes or so), job id - of course - is present. Setting for /2/sharing/share_folder: "force_async":false ... I'm not aware of any explicit time limits. 🤔 For sure 10 mins should be enough. You can force such a query to be async, but no opposite!…