Comments
-
Hi again @"Peter G", It's still not clear what version of Dropbox application/daemon is in use. To see it, you can type following command in a terminal: dropbox version You'll get back the application's control script and daemon version. @"Peter G" wrote:... I've done as you suggested - I've uninstalled and reinstalled the…
-
Hi @"urvisheth", If nothing else has been set, by default all file/folder path are rooted on the user folder, not to something else! On individual accounts user folder match to the account root and that why nothing need to be added. On group account, like business subscription, one account has more users and that's why…
-
Hi @"Alan Hsiao", Upload session is needed since there is no other way the content uploaded to be refered and when multipart upload is on go, session id does this work (upload referencing). Even on single pass upload (small file), a temporary upload session is created internally that usually doesn't need additional…
-
@"Joel99" wrote:... There is a simple solution though - you can move the dropbox folder to a virtual drive (still on your main C Drive) - it's easier than you'd think (in Windows at least - but may also be possible on a Mac?). ... Hi @"Joel99", Such a solution isn't so simple neither efficient - more volumes allocated more…
-
Hi @"Peter G", You didn't mention what version of Dropbox application is in use. Did you try to clean up your application daemon to see if that can solve something? Execute following command in your terminal (in the same order) to make sure everything is up: dropbox stop rm -rf ~/.dropbox* dropbox start -i With the last…
-
@"wa4ywm" wrote:... Also, when I hover over the icon to the right of the "Share" dropdown it says the user "..hasn't added to their dropbox yet" and the icon is grayed out. Why do they need to create a dropbox if all I want to do is share the folder? And why would they need to add anything to a dropbox? I want this to be…
-
Hi again @"ram4444", If you have troubles with dumping your application communication, there is still a workaround that can help you figure out what exactly flows on the wire. 😉 It's simple; just create a pseudo server that just dumps everything incoming using netcat and do redirect your failing call temporary to this…
-
@"ram4444" wrote:... When I http POST to the above URL for ... Hi @"ram4444", How exactly have you posted the above URL? 🤔 The URL looks like a GET URL! What did you post in the body of your POST request? 🧐 Take in mind that only changing the method name is NOT enough (in spite error check of Dropbox API seems…
-
@"Greg-DB" wrote:... You may be interested in using the GetTemporaryUploadLinkAsync method, as long as you don't expose the actual access/refresh tokens for your account to other users. How will be such method in use without exposing any token? 🤔 Maui is designed and usable for local applications (no server side)!
-
@"Gcleanwood" wrote:... Would it be better to share a password secured folder? ... There is NO such thing like "password secured folder". Don't mess password protected shared link, it's different thing! You cannot upload something using such link; such way may be used if you need to inspect/download something already in…
-
@"Gcleanwood" wrote:... Can this be done without forcing them to enter the Dropbox credentials?... Hi @"Gcleanwood", There is always some way. You can always pre-generate credential information that becomes part of your application. Such a way targets server side applications and is strongly discouraged to be used in user…
-
Thanks Greg, it's working as expected already. 😉
-
Hi @"jaohar", Take in mind that, as noted in the article you are referring to, the limit mentioned is related to application performance and not to the account in any way! These are different things. If you want to calculate your folders size take a look into another thread here. If something doesn't work as expected…
-
@"invisiblehelmet" wrote:How do I calculate the size of multiple folders at once? ..., but when I select multiple folders, the "calculate size" option is no longer available. ... Hi @"invisiblehelmet", Hm...🤔 strange... I just tried and and it seems working: After click on "Calculate size" the size of all folder start…
-
Hi @"oloch", Dropbox has dropped that feature, available some time ago, and it's unavailable on recent application versions, unfortunately. You may install some older version if the dropped feature is important to you. Currently all files (including offline) are available through the Dropbox application only or after…
-
@"olavolsf" wrote:... Would someone be so kind to tell me what I am doing wrong? ... Hi @"olavolsf", And... 🤔 What are you doing actually? @"olavolsf" wrote:... It is (most probably) related with the Refresh Token (and consequently the AccessToken), because when I create in the APP the AccessToken and use it for testing in…
-
Hi @"3d_Schorsch", For more info about how you can initiate authorization process, you can take a look here (including how to prepare your authorize URL). There is no such things like token URL or profile URL. It's your responsibility to organize your users profiles. About the tokens, they are result of the authorization…
-
@"annapretorius" wrote:So do you think ALL my data is safely stored on dropbox although the sizes differ? Although??? 🧐 Are they really differ? If they differ, your data are NOT safely stored, of course. I don't think they differ though 🙂, despite of can't be certain (only you have a look and can check; if I have to bet,…
-
Hi @"Asharaf", There are corresponding methods for both actions. You can get link's metadata using GetSharedLinkMetadataAsync and download shared link's file using GetSharedLinkFileAsync (aside of the option downloading the file or entire folder directly with just change links ending "dl=0" to "dl=1"). Hope this helps.
-
@"Goldmine" wrote:I had integrated drop box in php and its file uploaded successfully, But there is issue of access token which available for short time. How to generate refresh token for it ... Hi @"Goldmine", All new access tokens are short lived (~4 hours typically). As you found out, refresh token can be used to…
-
Hi again @"annapretorius", Your scenarios is a bit more complex, cause it's matter of how the space is spread and result efficiency of used space in addition to measure conception differences - you are evaluating folder tree, not just a single file. If we self-restrict us to the conceptions only, it's easy to be seen -…
-
@"raiam" wrote:..., I am adding files in there, I see the webhook getting in, but I am not in a position to save cursors, so I am using `filesListFolderGetLatestCursor` (nodejs sdk), and it requires a path. ...😞 Hi @"raiam", You have to be in position to save cursors!!! Otherwise you can't track any change! If you just…
-
Hi @"raiam", Just list the content with empty path and follow whatever appear there. 😉 All entries have their paths set and theses paths are mandatory correct, so you can use them as they are (just copy/paste). Hope this helps.
-
@"clientreleases" wrote: ... * Fixed an issue that would cause the Dropbox dock icon to always be visible for some Mac users. ... Finally; as far as I know that was reported before more than 2 years (might be more). Why so much time to such a simple change? 🤦 Just instead of dynamic registration name (something like…
-
@"kostas99" wrote:..., when i am trying to do this it returns no result. ... Hi @"kostas99", There is always some result! 😉 It's either success or error description. It's another story if you just ignore the result when it's an error. Read it, there is some useful information that let you know what's wrong. By the way...…
-
@"CHBA" wrote:... Also yes, I do understand that 'This code is a middle step for producing some token' but I never come any further. ... Hmm...🤔 What's going wrong actually? Your issue description isn't very clear (to me at least). Post exact commands and results that passed together with the error you're receiving (to be…
-
@"CHBA" wrote:... "In a terminal window execute following curl command:" curl https://api.dropbox.com/oauth2/token -d code=<received code> -d grant_type=authorization_code -u <App key>:<App secret> I replace the 'received code', 'App key', and 'App secret' with my own. When fired off in Powershell, it throws this error…
-
Yes, that's what the refresh token purpose.
-
Hi @"CHBA", Yes, access token expires (all of them) . Whatever you have read, it's outdated. You need to refresh the access token using refresh token. Take a look here how this can be done without using SDK. Hope this helps.
-
Hi @"annapretorius", Haha...😀 Very fundamental question... and there are many different thoughts about. There are 2 main/basic different measure conceptions for multiplication. One of them is, like most others measure units - SI based, multiple by 10 (i.e. 1kB = 1000B, etc.); the other is using power of 2 conception and as…