Comments
-
No, 'offline' access type just adds refresh token to response, nothing else! Something that you're ignoring in your code completely so far. So that cannot be a reason. Are you sure you have uploaded to the same account? 🙃
-
@"Ghost Mjrm" wrote:... so where is the problem i cannot find it Ah..🙋 If that's fine for you, you can use it in such a way, of course. In such a case you can remove the "offline" declaration for the access type since you're not using it in fact. So big part of entire discussion seems meaningless - you don't need long term…
-
Hm..🤔 Are you still trying some sort of AI? 🧐 @"Ghost Mjrm", come on... 😁 I believe you have your own; use it! 😉
-
You make me speculate... Likely you have copied it into your account using "copy to Dropbox".
-
Hi @"fbx_dsb", 🙂No, the file is NOT one shared with you (or not directly to your account at least). That what you're talking about is shared link to a file - it's something different! Since it's NOT part of your account, it misses in your list (actually you don't have any files shared to you - again, rather your account;…
-
@"frankpxl" wrote:... Would I have to do something special to have my DB files in Kubuntu? ... Hi @"frankpxl", No you don't need to do anything special. Just install appropriate deb package version suitable for your Ubuntu version (depending is your version 22.04 or earlier, or you have more recent version). That's it.…
-
@"wzeller" wrote:... If you would have time to explain this, I say thank you in advance. Hm..🤔 To be honest I'm not sure what you ask me for actually. I explained it already and don't know what to add. Ok, will repeat in other words. Official Dropbox application is limited to handle only one account locally (or 2 linked…
-
@"wzeller", Good questions. I skipped them by mistake. At the beginning let mention that it's a good idea if you have any Dropbox extras (like online only files and backups) turned on to turn them off (for files make them offline) in advance! In such a way you will avoid some possible troubles (like "ghost" files 👹) while…
-
Hi @"wzeller", As far as I can follow your thoughts you have just one account (Basic) and want to have Plus account. 🤔 Am I correct? In such a case, you don't need second account, but just upgrade you current one. 😉 So you wouldn't need to switch between 2 accounts at all. @"wzeller" wrote:... - Do I have to uninstall the…
-
@"user44" wrote:... I understand raw HTTP usage is given here, but I am looking for using Java SDK. Hi @"user44", As seems, you don't understand that most "raw HTTP" related to Dropbox API have their equivalents in all SDKs (including Dropbox Java SDK). In the particular, equivalent call can be seen here. 😉 Also, you can…
-
Would be enough something like: this.fileClient = new Dropbox({ refreshToken: process.env.DROPBOX_REFRESH_TOKEN, clientId: process.env.DROPBOX_CLIENT_ID, clientSecret: process.env.DROPBOX_CLIENT_SECRET, selectUser: process.env.DROPBOX_USER,}); To avoid meaningless refresh (usually need no more than once for 4 hours) in…
-
Hi @"ojdev", Yes, the SDK would refresh (regenerate in fact) access token if/when you provide refresh token together with app key and likely needed app secret - something that's missing in your code. Take a look here how you can get it by hands and use in your code later. You don't need the last step there - it's…
-
As I already explained here, there is no more long lived access token and don't know how to say it more clear. Such token was supported some time ago, but it's no more. Probably by mistake on some places in documentation this type of token still exists, but it's a mistake... nothing more! There is no way to get new long…
-
Hm..🤔 To be honest I don't understand what you mean here, but if that doesn't work for you for some reason then using get_temporary_link wouldn't work too (the links are the same when direct link is selected in options). In both cases they expire in 4 hours (both are temporary). About the error you got, check that the…
-
@"FMRb" wrote:... 3. Selecting a file using Dropbox chooser 4. Obtaining a temporary link with API `get_temporary_link`, the body `path` for the API contains the file id coming from the Dropbox chooses response ... Hi @"FMRb", Why you need to make this call (get_temporary_link) in addition at all? 🤔 Selecting direct link…
-
😁 @"Adi4", Of course, your code will always executes regardless have you passed already OAuth or no!!! Be more careful - restructure your code better. You have one more error that will comes up once you fix current error. @"Здравко" wrote:... Access token is short lived only and expires in 4 hours or so. For long term…
-
Hm..🤔 Strange... There is a small chance some erroneous app instance to run already. There are known bugs. Try what is already running using something like: ps ax | grep dropbox If needed stop all running (possibly died) instances, try something like: killall dropbox ...or equivalent commands. Let's hope this will work.…
-
As seems you have some configuration issue on your system I cannot comment (I use the same configuration and don't have any "panicked"). 🤷 Anyway... As seems, your Dropbox daemon run already in spite. So you should be able sync whatever you like in you Dropbox folder (by default ~/Dropbox; in your case /home/yuri/Dropbox).…
-
@"yurisobral" wrote:... Starting Dropbox...Bootstrap panicked!! /usr/bin/dropbox:303: PyGIDeprecationWarning: Since version 3.11, calling threads_init is no longer needed. See: https://wiki.gnome.org/PyGObject/Threading GObject.threads_init() ... @"yurisobral" wrote:... I do not recall changing the python version on my…
-
@"Adi4" wrote:... If their any other way to make client that generate Access Token dynamically please guide me ... Hi @"Adi4", Access token is short lived only and expires in 4 hours or so. For long term access you need refresh token that doesn't expire automatic. For Java, there are examples in Java SDK. You can take a…
-
Some workaround (till real solution finding out) could be copying auth code by hands instead of using HttpListener for that. 🤷 Somehow ugly, but will work stable everywhere. 😉 Good luck.
-
@"yurisobral", you have 2 issues. You have customized your system (unsupported version of Python installed). ntfs is NOT supported on Linux. That's it. PS: You may try workaround (the first issue) with a command like: sudo wget -O /usr/bin/dropbox https://www.dropbox.com/download?dl=packages/dropbox.py Good luck.
-
@"Ghost Mjrm" wrote:... i just want when the user click on the corner button to start oAuth 2 operation and get access token then my app use this access token to upload the photo to dropbox ... If you get access token directly then this token will expire in 4 hours or so. So you go beck at the beginning. @"Ghost…
-
@"Ghost Mjrm" wrote:... error 400 invalid redirect_uri. when response_type=code without PKCE,redirect_uri must start with "https://", unless its a localhost URI @"Ghost Mjrm", you posted already the answer of your question (part of error message). To be able set scheme different than "https" (or similar) you need PKCE auth…
-
@"dhavalsoni" wrote:..., but that is sending team related response, ... Hi @"dhavalsoni", First of all, that's NOT response - it's message! Such type of message notified you about there are some change(s) in related (linked) account(s). The notification may be about change of any kind and there is no way to limit it.…
-
This means that your (Intel) processor tries access something uninitialized (most probably). Did you initialize your SDK in advance, as I noted? If not, DropboxOAuthManager.sharedOAuthManager points to nowhere! Something that likely be reason for such signal. Of course might be something else too. You can investigate where…
-
Hi @"Sandeepkiranp", All general usage sync systems (including Dropbox) sync files content, not entire block(s) - on different platforms blocks may have different sizes, so syncing blocks would predispose to troubles (and would be meaningless). Hope this helps. PS: What Jay directed you to is an outdated feature for block…
-
Hm..🤔 Once you have refresh token using PKCE (you didn't mention but I suppose you used PKCE since it's mandatory for skipping app secret), would be easier just to call something like: import SwiftyDropbox let token = DropboxAccessToken(accessToken: "", uid: "", refreshToken: "<your refresh token here>",…
-
Such an error indicates that the socket has felled in undefined state and the system (socket controlling libraries) cannot recover it. It's not related to the HTTP query performed directly. There are wide variety of reasons for such thing and cannot be pointed something mandatory as a source. @"josuegomes", To figure out…
-
@"whats", If it's so hard for you to add support for app secret, then perform OAuth flow using PKCE (as I mentioned it as a variant before). In such a way you wouldn't need app secret and can use Dropbox Swift SDK as is (without change). You don't need to implement such a flow in the same language. Throughout the forum and…