Здравко Legendary | Level 20

Comments

  • @"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 ****** 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 ****** file: <a href=”https://www.dropbox.com/scl/fo/yndx3xyfkwczmmjbzegqz/AP5IuRHPTk67Oyl-MTG9ROw?rlkey=gam3ghcw8c41hhhx4v2p8jn8m&st=4yb20pn5&dl=0/>****** 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 ****** 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…
  • @"TheOmnisis" wrote: ..says the Linux partition isnt ext4, which it clearly is..... Hi @"TheOmnisis", For an easy way to check what partition/FS type is in use, you can run following in your terminal: stat -f ~ Is the result expected? 😉 If you have difficulties understand it, post the result (or screenshot) here. Hope this…
  • @"awb" wrote:... Tried looping through users and admins ... ... and? 🤔 What is the result? You didn't mention. If result, what's it, otherwise, what's the error?
  • @"awb" wrote:... Is there anyway to locate this folder when I have the ID? ... Hi @"awb", Did you try GetMetadataAsync method with your ID? If not, give it a try. Does this call return something meaningful or an error? If error, what error? 🧐 Hope this gives direction?
  • 😀Are you sure? Take a look again and don't believe in what's denoted - it comes from people, people make mistake! By the way, on your info panel may be seen the file size expressed in Bytes (NOT MB). Try express this size in the both ways in MB and see what to what matches, as I said (keep in mind roundings there). One…
  • @"Jean-Charles M.1" wrote:... Example : a .pptx file: on pathfinder's get info: 9.1MB, on dropbox 8.64MB ... Hi @"Jean-Charles M.1", That's interesting topic. 🤔 A topic about digital information measurement units. You denoted both value as expressed with the same unit. Is it certain? 🧐 Did you check it? 😉 There are 2 main…
  • Hi @"Graphicus44", There are some... strange things in your description: @"Graphicus44" wrote:... And since I sync'd up Dropbox online (after copying my data to the new drive) the online version of my files now has those same (newer) folder modification dates. ... If no any new folder or file comes there, nothing's gonna…
  • Wow, that doesn't seem to be a Dropbox emblem. 🤔 Do you use some other sync/cloud storage service? If so, keep in mind that such services cannot work together and it's not a good idea to try. Online/offline control should be available through the context menu (right mouse click on particular file).
  • Hi @"Preston J.", It's likely you try open a file that's not in sync locally. Is your file in "online only" status? If so, make it available offline and then try open it (once it's marked with massive green emblem, not just tinny green check). 😉 Hope this helps.
  • @"codeconfigs", I cannot be more concrete without more exact point/example what are you doing and it's going wrong accordingly. @"codeconfigs" wrote:..., we found some duplicate ID's ... There is no way to exist duplicate IDs. Every file/folder ID identifies in unique way particular file/folder. Though, keep in mind that…