Здравко Legendary | Level 20

Comments

  • Hi @"Morten Flatau", Execute following: rm -rf ~/.dropbox Now re-link your application, like start for the first time, on next launch. 😉 Hope this helps.
  • @"developersSave" wrote:... I've to move "folder-2" under "My-App" folder, but I don't have any id for this one. ... @"developersSave", You don't need id for your app namespace root folder. It's just empty. Pass an empty string instead of real ID. 😉 The concatenation can proceed without change.
  • @"Anonymous One", I serious doubt you don't understand the meaning of the term 'encoding'. More precisely the fact that this word meaning can vary depending on what's going work on about. Ok, I will try summarize in brief. A file is place where some data can be stored (any type of data; depending on this type,…
  • As always, status doesn't show any incidents. 🤦 The staff will say - this incident is NOT meaningful/important enough. 🤷
  • @"developersSave" wrote:... that's my method for folders, but it doesn't work (to and from path are both id:etcetc): ... @"Здравко"wrote: ... 'id' can be use as path in all cases where existing object is expected to be there. ... When you have non existing object (the target path), you can combine id and trailing part of…
  • @"Anonymous One", I have no idea how the situation can be explained more clear. Dropbox doesn't make difference between text based files and binary files! The content has to be uploaded as is without any change. Dropbox will save whatever you upload, as you have uploaded it, exactly (if encoded -> encoded)!!! That's why…
  • @"Anonymous One" wrote:...let pdfData = file.load({ id: 'file cabinet file id' }) // this will load the filelet dataContent = pdfData.getContents() // this will fetch the content of the loaded file.... Hi @"Anonymous One", Are you sure the file denoted by the id is the actual file you want to upload and not some encoded…
  • @"developersSave" wrote:... does it works also for folders? Can I move them in other folders? ... @"Здравко" wrote:... In other words, as you have passed id to get metadata, in the same way you can pass file/folder id as fromPath parameter (it's the same). ...
  • @"Nancy" wrote:... How long have you been experiencing this behavior? ... @"Nancy", this behavior comes from day zero of Dropbox existence! Just repeat, as described by @"Fredrik_P", and you will see it. I just created a test1.txt file and renamed it to test.txt: As you can see on the screenshot, the file gets correctly…
  • @"Vineeth1" wrote:... The json doesnt contain refresh code in it. Is there any settings I need to change Hi @"Vineeth1", Did you denote offline access in your authorization URL? 🧐 If I have to bet, No. 👈 Take a look on this example. You don't need the last step there, just get the refresh token. Hope this helps.
  • @"nive" wrote:Hello @"Здравко" @"Здравко" Correct me if I'm wrong , So the app name "CISCAT" and the folder name inside /Apps should be the same ? Asking so , because the folder name is CIS_CAT( with an underscore) . And thank you for the path correction , Ill try that . ... Hm...🤔 Yes and no. In general that's the rule.…
  • Hi again @"nive", You give different values for the path in Dropbox: In your first post "/Apps/myfolder/download.zip", but in second - "/Apps/CIS_CAT/CIS-CAT-Assessor-windows-GUI-jre-v4.30.0.zip"! This is important since you application name is "CISCAT", it can see only folder "/Apps/CIS_CAT/", as a root, and its content,…
  • Hi @"nive", Too few info has been provided for direct answer. First of all, what type of access your application has, "App folder" or "Full Dropbox"? You gave the path where you put the zip file, but what exactly you have passed to as argument? Provide something more complete as a example - what's executing (including all…
  • @"Vineeth1" wrote:... I keep getting captcha ... @"Vineeth1", that's the reason of captcha to be there. 😀 If you want long term access, you can rely on refresh token instead of access token only. 😉
  • @"sashafree" wrote:... I've tried viewing it with another email and ... @"sashafree", the email doesn't matter! What about incognito browser window that Mark mentioned about? 🤔 Did you try?
  • @"GustavoLeopoldo" wrote:... The response is ok (200), but I need to use content-Type as binary or Txt. ... Hi @"GustavoLeopoldo", Since you have successfully received your data, you don't need to observe what's the actual transfer type (content-type). This same content is saved as is in your response object as binary/blob…
  • @"DDmUSA" wrote:... Can any platform offer this? ... Hi @"DDmUSA", There are platforms that promise such things, but believe me all this is nothing more than lies. If you are able to listen to something, that means it's already downloaded somehow (in spite not in form of classical file). And since downloaded, it's always…
  • @"Buff Daddy" wrote:... ... Hi again @"Buff Daddy", It looks like you're talking not about simple shared folder but for team folder/space. Only admins can manage such folders (including adding/removing members to there). If you're admin, log in as such and take appropriate steps. If you don't have admin rights, ask you…
  • @"Jopo-JP" wrote:... If the user edits a file and saves or rename it, there is no batch operation. ... @"Jopo-JP", Save and rename operations cannot execute in batch together, but multiple save (upload actually) operations on one side and multiple rename (move actually) operations on other side can be executed in…
  • @"Jopo-JP" wrote:At the moment i'm testing the api and noticed if i move multiple files/folder it only moves one file a second. Renaming also suffers from the same problem. This seems rather slow. ... It can cause issues for me, if multiple people at once work on files in dropbox and move stuff around with 100s pdf and…
  • @"developersSave" wrote:... As a result, should the path necessarily be managed with '/general-folder/my-folder'? May I use 'id:AAAAetcetc'? ... Yes, you can use it. It's matter of your choice. Also there are some differences, that you should take in mind, and that can be a trouble if you are not aware or ignore them. The…
  • Hi @"sbrownnw", @"sbrownnw" wrote:... No matter which App I use (the previous free App or the new Full Dropbox access App), when I generate a token manually under that app, my default user folder is always treated as "root" as circled below: ... No you have a wrong assumption! Dropbox application always gets access to…
  • @"developersSave" wrote:... By applying the firt method I would like to retrieve both the "from" path (the origin folder) and the "to" path (the destination folder), but I'm getting the following error: com.dropbox.core.v2.files.GetMetadataErrorException: Exception in 2/files/get_metadata:…
  • @"developersSave" wrote:... I'm trying to get my new folder path from it dropbox id using getFolderPath() method, ... @"developersSave", You don't need to get existing file/folder path from id. The id may be used on path's place instead. So, your 'getFolderPath' is meaningless here. Even more - what about files:…
  • Hi @"developersSave", You can use moveV2​ method to move/rename a file/folder. For different examples showing simple applications (hello world style), take a look here. Hope this helps.
  • Hi @"Djmarty", To be possible some comment, provide some more information like algorithm structure from constructing auth URL (where redirect URI should exists too) to the troublesome call. The things are related and "mismatch" means something doesn't match between. Let see...
  • @"wilcoxaj" wrote:... a solution to do this with Windows? Take a look here for a version that works on Windows too.
  • @"jacky-radix" wrote:... I am not getting that, I have created one app in console and there is a field to enter a webhook url. So I have added that and enabled. ... Yes, in that way you have already registered webhook URL to your application (NOT to your account). As Greg mentioned too, only linked account(s) will be…
  • @"jacky-radix" wrote:... I have added a webhook URL to my account and it is verified with challenge param. ... Hi @"jacky-radix", 😁 You haven't added any kind of webhook to your account. 🤫 It's impossible! Webhook is a way for an application to trace accounts activity (accounts that accepted to use particular application),…
  • @"Babaraba Abdabi" wrote:... "https://www.dropbox.com/home#{dirname}?preview=#{basename}" ... Hi @"Babaraba Abdabi", Such a link may appear valid for file, but take in mind that it's very context specific (login session specific). You should make sure the user has logged in the same context where you got your…