Comments
-
Hi @"xwbash", For some basic walk-throgh, take a look on https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Issue-in-generating-access-token/td-p/592667 without redirect URL. Once the basics are clear, you can add automation easy, I beleave. 😉 Hope this helps.
-
@"dwissing" wrote:... I don't really understand how this works, or where I can put the refresh token in order to use it to create a new Dropbox object. Ok, I'm putting the example with enlightened line here again. Can you explain what exactly this line is doing (exactly this, no any other)? What will change if you replace…
-
@"Здравко"wrote:... The only thing you need to do is initialization of Dropbox client object using refresh token, instead of access token. ... @"dwissing" wrote:... I tried just replacing the access token with the refresh token in the dbx - new Dropbox() line, but that did not work. ... Of course, what did you expect??? 🤔…
-
@"Greg-DB" wrote:... , so you can store and re-use them repeatedly. @"Greg-DB", better let @"dwissing" focus on the particular setup. No storage or reusage is need in particular case. The refresh token is available as a constant and can be used as a replacement for 'token.result.refresh_token', in particular.
-
@"dwissing" wrote:... I can use the info you provided in a terminal to get a new access token, but how do I do it automatically? ... 🙂 No, no, no... Seems my forwarding was too brief and no very clear. On the page, I referred to above, entire work flow is described, not only initial authentication! The last part there, as…
-
Hi @"dwissing", Take a look on https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Issue-in-generating-access-token/td-p/592667 how you would be able do the same in regular terminal. 😉 Hope this helps.
-
@"Run_DMC" wrote:..., I I'll be evaluating other options to see if there's anything that can give me what I'm looking for. Hi @"Run_DMC", Other thing you can do (and I advise you do it) is turn off your so called Dropbox Computer Backup completely at the beginning. Next, once everything completes, you can move whatever you…
-
Hi @"knoppys", What about leading slash? 🧐😉 Hope this helps.
-
Hi @"magleft", Unfortunately your environment language (Pascal) is NOT supported directly by Dropbox. Yes, using regular web queries you can download files pointed by URLs like shared links. @"magleft" wrote:... I would like to ask if it is possible to upload the file to dropbox via the link. ... Unfortunately upload to a…
-
@"streetcodernate" wrote:... but when I check the /CSV_UPLOADS folder, the file that was supposed to be uploaded isn’t there! Hi @"streetcodernate", Does you application have full account access or only application folder access? 🧐 If it's the second case where are you actually looking for your CSV_UPLOADS folder? 🤔 In…
-
Hah...😁 Everything and nothing. Dropbox API, used either directly or through some SDK, provides access to client account content. You, with your code, can list that content, read it, write there, etc. If you want to sync something (or any other particular operation - representable as a sequence of elementary API…
-
@"melikastone1385" wrote:Which API can I use ... Hm🤔... What about Dropbox API? 🧐 (HTTP calls in their nature).
-
@"ripemach" wrote:... I need the App Id, App secret ... https://www.dropbox.com/developers/apps 😉 Create a such here.
-
@"Dinesh K" wrote: ... request body: could not decode input as JSON. Hi @"Dinesh K", As mentioned in /2/file_properties/properties/add documentation, parameters has to be passed within the call body and formatted in JSON. According to the posted error message, that's not the case (i.e. your parameters are NOT formatted…
-
@"Tech Dev Oldsmar" wrote:This would be a killer feature. Hope it might happen. 😁 Better don't rely too much. Not on the Dropbox at least. "would be a killer feature": why would be? 🧐 it is actually. While Dropbox application is installed on your machine and works properly, the feature is available there. Dropbox…
-
Hi @"production_tvox", Long lived access tokens (despite existing can still be used) can NOT be issued any more. You should add in your code support for refresh token. Like the long lived access token, refresh token doesn't expire till revoke explicitly. If you are using in your application one of Dropbox SDKs, the only…
-
Yes, and that's on a file you can successfully open now... Does some troublesome file left? (that you haven't "copying" yet) 🧐 What's the same menu showing there?
-
@"TOMSAL" wrote:... all my files are already local. Just doublechecked.. How do you "doublechecked" it? What is the emblem on some troublesome file? is it a tick on green background or white cloud? @"TOMSAL" wrote:..., copying the file does solve the problem for now. ... Of course, it will always do in such a way. 😉…
-
Hi @"TOMSAL", The best thing you can do is turn your "Smart Sync" (especially in quotes) off and make your files local (not "online only" with cloud emblem). If you don't want to turn off entire (Non)"Smart sync" for some reason, do this (set to local) on all files you are working on currently, at least. Hope this helps.
-
Hi @"Mostafa Ezzat", Let's try some authentication process step by step. 🙂 It may succeed. At the beginning make sure you have your App key and App secret at hand from App Console page. Select desired application there and once got there in and scroll to field "App key" and "App secret" (for the secret "Show" should be…
-
Strange things happen here. All paths (including the importlib one) are correct. Everything seems normal except the error. 🤷 An error saying that is missing something reported already as being there! 😯 I'm out of further ideas. Let's hope somebody else can continue with more "fresh" ideas. Good luck @"joekur"!
-
@"joekur" wrote:... Seems my computer is being stubborn.🤐 ... Hah... 😁 Yes, seems so. 🤔 I'm using exactly the same versions, like you do, and everything works. Just added one more line to figure out where exactly your Python is looking for machinery.py. 🤷 That looks like something impossible - the file is there, but can…
-
Hi @"joekur" again, Wow..., that's something really strange. 🤔 The mentioned class and wrapper module (and package) are something standard to Python (importlib.machinery.SourceFileLoader). 🤷 Seems, your install gets broken somehow. What's the Python version you are using? Take on result from: python3 --version It should be…
-
Hi @"joekur", Sometimes it's difficult to find out what's exactly the source of troubles. In such situations additional diagnostic information can show some directions you might missed yet. I'm putting here one script targeting such diagnostic information: #!/usr/bin/python3 import os, sys, json; from importlib.machinery…
-
I fully agree with to your suggestions, @"Quuzuu"! 😉 Let's hope some developer will get impressed... 😁 But you shouldn't rely too much... such thing is very unusual... 🤷 ... unfortunately.
-
@"TessaP" wrote:... I read the above tips but there is not enough specific information for me to solve it. I use the key and secret that rdrop2 provides, store it and call it. It would be very helpful if someone can provide code in R to solve this, or provide more information how to request 'offline access' as suggested.…
-
Hi @"dolclarkson", You need file request. Such can be created here: https://www.dropbox.com/requests Hope this helps.
-
Hi @"Quuzuu", Your "favicon.png" files count isn't so big. So should not be a big task to compare local and online equivalents. While keep open the local search results, try the same with search bar in web interface of your account. Is there some more additional file(s) or time stamp of matching results differs? 🤔 Hope…
-
Hi @"Steven_R", As far as I can see, you are trying authorization by code and mix two different access points calls involved in the auth flow in use - /oauth2/authorize and /oauth2/token. "token_access_type" is valid and usable in the first call, not the second one! 😉 That's where resides your error. On possible results…
-
@"Steven_R" wrote:... Is there a known issue where some tokens are invalid? No, just generation of long lived tokens is dropped already. Existing could still be used. You should care to include in your authentication flow the refresh token, generated when you select 'offline' (like it was for long lived token). Take a look…