Comments
-
Hi @"toki4004", It's a good idea to prototype API call when you are not sure about something. 😉 So you can easy find out all differences and what's wrong. In particular (for /2/files/upload) you can take a look here. Click on "Show Code" to see how the call look like. Most valuable for you may be the "HTTP request" form of…
-
@"Rephoto" wrote:@"Здравко"Hi, I tried again with the code below to upload small files (e.g. 10, 20MB). But the result just failed. :)) ... Hm..🤔 Probably I miss something, but where in your code you did upload files actually? 🧐 I cannot figure out where is this place/codeline. Please point out where you pass your files…
-
Hi @"leojtonozzi", Recent versions support Python 3 already, so neither your issue nor the solution can be the same. You can try describe what exactly you are receiving to becomes a bit more clear what's wrong. Something else: The thread you're looking on is pretty old! There are described practices that are deprecated…
-
@"Rephoto", What are you doing? Batch is used when you want to upload multiple files at once, not to split one file upload and do pieces upload simultaneous!!! Use concurrent upload session to do that.
-
@"Rephoto", Start concurrent upload session and upload every peace of data in its own context (so no any reference gets lost). 😉 Good luck.
-
Hi @"Rephoto", When you're starting upload session, you use the default type - sequential session, but when actual upload gets on you're trying concurrent upload. Decide what you want actually. Hope this gives direction.
-
Yes, that too @"manishkanwaria" - good note. 🙂 Just to avoid further confusions: path separator for all paths is single forward slash and all paths always start with a slash (again single slash). Since your application is 'App folder' type, all paths you're going to pass to any API calls have to be rooted on the…
-
Hm.. 🤔 Did you set single or double slashes when you tried for very first time and it didn't worked? 🧐🙂 Hope this reveals the 'mystery'. 😉
-
Hi @"manishkanwaria", You may try with: var response = await dbx.Files.DownloadAsync("/VID20230902073536.mp4") Does it works? 🤔😉 Hope this helps.
-
@"Gags" wrote:... As I understand, I should set RootNameSpace everywhere in my Dropbox API calls in my scenario ... It's matter of design decision, not something mandatory. I conditionally proposed it since the description in your OP was sounding so. If I was wrong... finally it's your decision. @"Gags" wrote:... I am…
-
@"Gags" wrote:... Which one is used by default if we don't set WithPathRoot - RootNameSpaceID or HomeNameSpaceID ? ... Hi @"Gags", By default 'HomeNameSpaceID' is in use when nothing set explicitly. @"Gags" wrote:... From what I understand, we need to use HomeNameSpaceID if we need to create files and folders via Dropbox…
-
Hi @"toki4004", To get content of any file, you need to download it, not something else. 🙂 Something more: as seems you're messing 2 different things - file and file request! File request is pseudo object representing your (or your app' user) intention to get file from somebody else, not the file itself. Getting such…
-
@"lwmar" wrote:I cannot see the Dropbox icon on the top of the screen anymore ... Hi @"lwmar", Hm..🤔 It's strange when you had the application ran and displayed its icon it to stops just so, without reason at some point. As seems Dropbox cannot see that you're running graphical environment and gets fall back to console…
-
@"gnet-Jim" wrote:... I see the files in Dropbox on my phone, I'm sharing them to the same folder in Dropbox, without any change to the filename. I would think if that was the issue I'd have to change the names to get them to show up. Not necessary. Most present days phones are able to handle automatic adaptation of such…
-
Hi @"gnet-Jim", Most probably your volunteer uses Windows incompatible symbols into file/folder names and/or incompatible formatting. Unfortunately Windows is very capricious about possible symbols and formatting. Ask she don't to set leading or trailing spaces and not to use symbols that Windows count as special, like…
-
@"baltasarq", Just a note: In your web browser you're receiving authorization code, not access token! They are different things. 😉
-
Hi @"escanzano", You have one error for sure: 'download_path' should point to file where to save downloaded content, not to folder. The actual exception, you got, means that something within the Dropbox path is not correct. A good way to start troubleshooting is to list files from account root up to desired file - folder'…
-
@"janecaruso" wrote:.... If you have better advice, I am listening. @"janecaruso", hm.. 🤔 Probably I forgot, but if scroll up, you may see some advices... 🙋
-
@"janecaruso" wrote:I went in and changed my preference to online only...... @"janecaruso", Can you explain to me how exactly you changed "Selective Sync" to "online only"? (something impossible by the way) Did you read the article pointed by the my link above? Take in mind that "Smart Sync" (the only thing you consider)…
-
@"janecaruso", Isn't Selective Sync working for you? 🧐
-
@"baltasarq" wrote:... DbxCredential credentials = new DbxCredential( getString( R.string.dropbox_token ), Long.MAX_VALUE, result.getAccessToken(), getString( R.string.dropbox_key ), getString( R.string.dropbox_secret ) ); client = new DbxClientV2( config, credentials ); ... @"baltasarq", You can correct the above code in…
-
@"baltasarq" wrote:The problem is that I'm not using the HTTP API, I have to refer myself to the Java SDK API, ... You don't need to do much more than you already have done. You're using HTTP API actually, in spit not directly; That's what Dropbox SDKs are for (not only Java Dropbox SDK). 😉 Of course, you can manage the…
-
Hi @"baltasarq", Take a look on a nearby thread. It's almost the same (different languages, but the same idea).
-
@"isaacfink" wrote:I is there an example of an 0auth flow? I would like to run it once locally so I can get the token Hi @"isaacfink", A good and simple example for running locally can be seen here. You have to follow all steps (without the last one; it's executed inside SDK). Since PKCE is no used there, you'll need pass…
-
To do that you need to use WithPathRoot. By the way, team folder id is neither admin nor member id. That's why you got the error. 😉
-
😁 Yes, but here the PDF is still not open. Try the same view like in your previous screenshot you posted (the one I talked about). 😉
-
Hi @"borhene", By default, all calls to access content are rooted to user/member folder (not to account root). On personal account, account root and user folder are the same thing, which is NOT the case for member of team account (seen on your screenshot too). To be able list something outside member folder, you have to…
-
Would be strange to be a Xiaomi issue since Firefox is independent software and is supposed to be the same everywhere. On your screenshot, ellipsis appears on correct place; what menu comes up when you tap on there? Can you post screenshot showing this menu?
-
It's latest version of Firefox on my Android 10 phone. Add: One more clarification is that I always use desktop view. In regular view some things don't show well (not Dropbox menus only).
-
Hm... 🤔 Selecting 'Edit' lets me edit pdf: What happens when you tap on 'Edit' in your menu? 🧐