Comments
-
Hi @"Toma3", Take a look on your account email here. Have you been checking the correct email? 🧐
-
@"Tshaniii", The error, you're receiving just reflect rules that all paths, pointing file/folder in any Dropbox account, should follow to and you have violated. In particular, all paths (except the root) must start with forward slash and no any trailing slashes (both for files and folders). It may be easier to use the…
-
@"shashank-cognitica" wrote:Does the refresh token expires when it is not used for long time? No, it doesn't expire; or at least until you revoke it through your application or user disables it using the account settings; or account is disabled/deleted.
-
Hi @"Tshaniii", The error, you received, means there is no such file as pointed by your dbx_path. Do you able see the pointed file when you list your account using the same token? 🧐 Take in mind that the account views in your web view or local Dropbox folder view can differ from what you see using API if the application…
-
Hi @"tszikszai", You can take a look here for a working example. It targets different task, but you can get the object in dbx variable using getClient method instead of initializing by your own. In such a way everything, regarding OAuth flow, is done and you can use the result. 😉 Of course you can change whatever needed.…
-
Hi @"ddixit", Would be really strange if the code you posted: @"ddixit" wrote:... while (list.HasMore) { list = dbx.Files.ListFolderContinueAsync(list.Cursor).Result; } foreach (var item in list.Entries.Where(i => i.IsFolder)) { folders.Add(new FolderNameModel { FolderName = item.Name }); } ... ... works correct and fixes…
-
@"Greg-DB" wrote:... If you want to embed a file from Dropbox on a third party site, you should use the functionality documented for the Dropbox Embedder here. Hmm...🤔 There are no any type of such features; the same like embedding raw link! The issue comes from dropping the anchor, coming from redirection. As mentioned in…
-
@"Tshaniii" wrote: ... const redirectUri = `https://dropbox.com/oauth2/authorize?response_type=code&client_id=${process.env.DBX_APP_KEY}&redirect_uri=http://localhost:3000/dashboard&token_access_type=legacy`;... error: { error: 'invalid_request', error_description: 'unknown field "token_access_type"' } ... Hi @"Tshaniii",…
-
@"David S.118" wrote:... I'm not sure what language that example script is in. ... Hi again @"David S.118", Hah..😯 You said "I have a script I've written but...", but seems you don't have too much experience, since can distinguish one of the most popular scripting languages - Python. Some parts of the official Dropbox…
-
Hi @"David S.118", You can take a look on thread' post here for an idea how that can be done. 😉 Hope this helps.
-
@"maxiyan" wrote:... If I suscribe right now a professional access with 180 days of recovery, is there any change to find these files back ? Hi @"maxiyan", No, unfortunately. 😕 Changing subscription isn't retroactive in that context. 🤷
-
Hi @"BartLors", On the page, you linked to in your post, is a working Saver example. Just press/click the "Save to Dropbox" button and the example picture "dropblox.png" will ask you select where to put it in your account. 😉 @"BartLors" wrote:... to my webpage, to enable people to upload pictures to my dropbox. ... Maybe…
-
Hi @"johnvu93", To be honest, I'm not sure fully understand your scenario, but as far as I can see /2/files/get_temporary_upload_link would work much better for you. In such a case you don't need to proxying upload process, but only manage it. Files themself get upload from user browser directly to Dropbox server. Once the…
-
@"johnvu93" wrote:... I am wondering if there is any API that allows me to do this? ... Hm... 🤔 What do you need actually using API? @"johnvu93" wrote:... Once the customer enters the URL link into the input, I will automatically retrieve the files through the Dropbox link. Do you have any issues download files using the…
-
Hi @"tommy64", 😁 Not only exe files are miss-signed. 🤫 Linux install packages (especially Ubuntu repositories) are signed with signs targeting different/nonmatched distributions (signs are copy/paste there). So, they becomes unsigned/incorrectly signed in fact. It's likely your issue to be the same. Most probably the…
-
By the way, I just checked and seems to be fixed already. Do you see that issue still?
-
@"Pat Sheehan" wrote:... I thought it might be a browser issue initially. ... No, no, no... definitely no. Range download mode is something standard and widely used. It's the way to consume video (and not only) stream as needed (no need to download everything at once). It's the way every browser is using (or most of them,…
-
@"Pat Sheehan" wrote:... Embedded videos suddenly stopped working and the latest "tip and trick" is from 2017 which isn't useful. Hi @"Pat Sheehan", What you mean with "Embedded"? 🧐 Do you use embedder or direct raw link? I just checked and embedder works as usual. If you use raw links to embed your content, the wrong…
-
@"Jeff B.63", Take a look on documentation! There POST request is always used. 🙋 GET is not for listing. The call parameters have to reside in request body, JSON encoded (as you correctly have specified in a header). Where is this JSON right now? 🧐😉
-
@"athithan", As you can see, /2/sharing/list_file_members/continue only support User authentication! That's it.
-
Try skip/jump over the second step.
-
Hi @"athithan", Did you try to authenticate on continue as a regular user after authenticate as admin during start listing members instead of always as admin? 🤔
-
Hi @"babydream", Where are you creating your links? 🤔 You can list existing links only; if there is no any link, as seems it's, the result you got is something normal.
-
@"elroy690" wrote:... When I let the whole sync process run through, everything will be back to normal afterwards? ... Yes. As I said, the application uploads everything anew. This doesn't mean that every file will be updated; Dropbox server, on its own, checks out and if nothing changed (the file is the same) upload is…
-
Hi @"elroy690", Yes, you have done mounting in the proper way. 😉 @"elroy690" wrote:... I copied the whole content with rsync, which is a standard linux tool and should work fine. I don't think the rsync command changes anything. Do you? ... 😁 Yes rsync is useful tool, but the "evil" is in details! How exactly you ran…
-
Hi @"synology_support", To be clear what's going on with your account using your application, let's do a test. Wipe temporary all team scopes, if any, out of your application' permissions (and after the test, bring them back, again if any). Execute following commands one by one in the same order: curl -X POST…
-
@"elroy690" wrote:... I have two Dropbox folders, but I renamed the old one, so this shouldn't be a problem, should it? It's a Linux system and I put set /home directory to the new drive, so actually Dropbox shouldn't even notice that something is different, cause I copied the whole /home content to the new drive. ... Hi…
-
@"hugolia" wrote:... W: GPG error: https://linux.dropbox.com/ubuntu focal Release: The following signatures were invalid: BADSIG FC918B335044912E Dropbox Automatic Signing Key Any idea how to solve it? Hi @"hugolia", Yes, replace "focal" to "disco" in Dropbox repository settings. 😉 Should be enough. Hope this helps.
-
@"BenDBX" wrote:... @"Graeme T.1" the repository issue was fixed last week. You should be able to update without receiving this error message. ... Hi @"BenDBX", What you mean "fixed"? 🧐 Did you take a look on the Release.gpg file both in "disco" and in "jammy" sections of the repository? 🤔 Did you see that they are the…
-
@"pankajetal" wrote:... I'm able to make the powershell script work using my access token but it won't work for other users. ... $token= "https://www.dropbox.com/oauth2/authorize?client_id=<my app ID>&response_type=code" ... Hi @"pankajetal", Since you can make you script work with access token, does the token that work…