Comments
-
@"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…
-
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.