Comments
-
That's right. The idea of Smart Sync is keeping file away (or online only) while they are not in use, so less disk space is engaged. If you try do something to Smart Sync-ed file, it syncs back (i.e. becomes offline), so you be able do what's intended. Once everything done, and Dropbox wait to avoid meaningless automated…
-
Hi @"Tinchohs", Did you try to touch an entry (file or folder) and keep the touch for a moment until the entry gets marked. After that you would be able select any other entry from current folder in addition and do whatever action available for selected set (including copy, move, delete, etc).
-
@"1575475" wrote:... I get a strange error: Error in call to API function "sharing/add_folder_member": Invalid authorization value in HTTP header "Authorization": "Basic <some base64 string>" Expecting "Bearer <oauth2-access-token>" I do provide an bearer oauth2 access token for app authentication (app ) and my user id (as…
-
@"MansoorJafari9" wrote:... I have appkey and appsecrect and I want to get access token with this URL "https://api.dropboxapi.com/2/auth/token/from_oauth1" ... Hi @"MansoorJafari9", The access point you are calling is a transitional feature, intended to transform outdated OAuth1 token to OAuth2 token. It's not a good idea…
-
@"Graeme T.1" wrote:Does this mean that the solid green files do *not* get Smart Synced 'away' if Smart Sync is enabled? ... Hi again @"Graeme T.1", I can't understand what you mean "if Smart Sync is enabled". 🤔 "solid green" means that Smart Sync is NOT enabled for particular file! That's the difference, "green hollow…
-
Hi @"AndyLei", Do you understand that you mixed 'urlencoded' with 'JSON'? 😉 Hope this gives direction.
-
Hi @"Graeme T.1", They are not absolutely the same. The first is permanently offline (until you explicitly change this or do something that does it implicitly). The second case is something like "temporarily offline". It's usually a "online only" file that gets offline as intention to open result and will (eventually)…
-
Hi @"Petugo", You have to check your setup. I just repeated what you describe and it seems work. @"Petugo" wrote:i followed the guide on https://www.dropbox.com/developers/embedder ... <a href="https://www.dropbox.com/sh/0a2v1bd2z6cfmcq/AAC15SSmIP6vBshB2iFxsAVOa?dl=0" class="dropbox-embed" data-height="1000px"…
-
@"Dyonysios" wrote:... What will Dropbox do? Match the cloud to what is on my laptop or match my laptop to what is in the cloud? ... Hi @"Dyonysios", The correct answer is the files on your laptop that differ will get updated to what's on cloud (cloud files are newer in particular case). I believe based on this, you can…
-
Hi @"Jay0203", No. Changing your account password is not supposed to affect neither any application key (including on your own application) nor issued token. Application key is something application specific. It identifies the application itself, not anything else (like an account, including your, and cannot be affected by…
-
Hi @"GIS_questions", Take a look on https://github.com/dropbox/dropbox-sdk-js/tree/main/examples/javascript 😉 Hope this helps.
-
Hi @"GNiX", All posted by you are warnings/deprecation messages. Unfortunately, since Linux is NOT first class citizen on Dropbox 'opinion', very often upcoming changes lag in time (sometimes actual actions start after really application stops working completely). Since by now posted by you are only warnings, they can't be…
-
@"mark_urq" wrote:... I deleted the app from my iPad then reinstalled it then tried to sign in using my username and password but again got the same message re too many devices? Hi @"mark_urq", Take in mind that when you delete Dropbox application from any device, it doesn't mean that established connection on that device…
-
Would be fine if you have supplied a reference to the example you are evaluating and the code-line where issues are rising from. As far as I can see, you are trying to upload something and file content get directed to as metadata instead of as file content (as should be). This comes/can be seen from the error message. 🤔 I…
-
@"zsiwik" wrote:... Does DropBox grant access to their API keys for this purpose? When you create your own application, any application key and secret (you are talking about most probably) are yours actually. Have you created already an application here? If not, finally - it's time. 😉
-
@"mikesam", to be honest, I'm not certain what you are asking actually. Greg's post above describes things in useful manner. Can you clarify what isn't working for you or what exactly you can't understand? 🧐 Add: Something missing, both in OP and in Greg's answer too, is at present long lived access token is not issued…
-
@"mikesam" wrote:... If yes, do we need to hardcode the token and make it available to all client user? ... Hi @"mikesam", Any kind of authentication info (including token) should be handled with care. Such information should be embedded only when application gonna be used on server side or by responsible person (or…
-
Hi @"Omri1984", Yes, when refresh token is in use (as a client constructor argument), the client automatically refresh access token whenever needed. In your code no any refresh token can be seen. 🤔 (or I'm missing something) Just do what you are saying. 😉 Follow the your own "answer". Good luck.
-
'dbx' object seems not properly initialized. Take a look how have you initialized it.
-
@"Melisek", Name all your vars properly to avoid confusion! For instance, is 'RedirectUri' really means redirect URI or ... something else? 😉
-
I mean something like: "\"" + RedirectUri.ToString() + "\"" It works for me. 😉 In such a way the space char comes scopes separator only, but not arguments separator.
-
Easiest workaround would be proper quoting. 😉 (As would be on command line)
-
If you mean the missing file, are you certain 'C:\Programming\C#\MelisekGameManager\MelisekGameManager\bin\Debug\net6.0-windows\index.html' exists? 🤔 Take a look.
-
Seems improper argument quoting. Space chars are used as a scopes separator, but the same chars are arguments separators too. Try following version: System.Diagnostics.Process.Start(new System.Diagnostics.ProcessStartInfo(authorizeUri.ToString()) {UseShellExecute = true}); I believe, now it's gonna work. 😉 Good luck.
-
@"donaldp" wrote:..., but I didn't get a refresh token, only the access token. Is there another parameter or something I need to specify, because I thought I'd done everything I needed to get the refresh token too (for offline processing). ...…
-
@"Watapana" wrote: ... When I check the folder, it's listed as "not shared". The team check shows I'm the owner and see all other members listed. ... Hi @"Watapana", Most probably you have unintentionally unmounted/deleted the folder you are talking about. Just creating a new folder on the same place with the same name…
-
Hi @"Melisek", Are you certain that Windows machine, used as a DUT, has properly set default web browser? 🧐 Try set it anew or change to some other. If no luck yet, test again with a bit changed 'authorizeUri'. Add to following line: @"Melisek" wrote:... ... System.Diagnostics.Process.Start(authorizeUri.ToString()); ...…
-
@"dbox-arg0" wrote:... * I was doing the Dropbox connection via call to chrome.tabs.create({ url: authUrl}), is this intended to be substituted by launchWebAuthFlow()? ... The documentation:You'll use the redirect URL in two places: * supply it when registering your extension as an OAuth2 client. * pass it into…
-
@"Melisek" wrote:... So far everything is going smoothly, but i have no idea how to refresh the token in my app. ... Hi @"Melisek", As far as you have set/constructed your Dropbox client object properly (as shown in all examples - including basic), you wont need to refresh any token explicitly. The client object does take…
-
@"donaldp" wrote:... So does the PKCE URL change each time, or I only need to generate it once? Technically it's possible to be a constant, but as I said before, why are you using PKCE in this case? 🤷 It becomes meaningless and I wouldn't give you such advice.