Comments
-
Hi @"maxcastrovidal", Don't have any doubts - refresh token doesn't expire by itself. @"maxcastrovidal" wrote:... After the short-lived access token finishes his useful life (4 hours) i ran again the same Postman Call (with the same parameters) to get a new short-lived access token, but now the response is {…
-
Hi @"JavMirVal", If there is some issue with a third party tool, only the supplier can fix it. Ask there. Hope this gives direction.
-
@"LisaBB" wrote: ... I choose save to my Dropbox, but some links recently disappeared Hi @"LisaBB", Person that shared link to you can remove link shared before or can remove file/folder shared before (after some time span the link will be invalidated too). Despite of, since you have saved the content in your Dropbox…
-
Hi @"jacques_coney", Do you mean something like mentioned here? 🤔 Hope this helps.
-
@"johnpeach" wrote:... However, the Dropbox widget in my top menu still displays the status "Connecting..." ... Hi @"johnpeach", Dropbox widget realization seems not very stable and this is very old issue. Unfortunately, nobody from Dropbox' development takes care since Linux isn't first class citizen in Dropbox. There are…
-
Hi @"Amicao", You can get idea how it works here, I believe. 😉 Your work is the PHP "translation". Hope this helps.
-
Hi @"johnhesler", While you are talking for link access, it's possible. 😉 Link is something public and direct accessible. But you have done a mistake in your code. Take in mind that the same link can has different forms. The link you are using in your code is preview link (ends on '?dl=0'). So, it's NOT pointing to actual…
-
Hi @"MG2L", Your SDK can automatically refresh access token using the provided refresh token usually. About how to get a refresh token, take a look here for a possible way. 😉 Hope this helps.
-
Hi @"ethanfang", The problem in your case is that you have lots of namespaces. Every single namespace gets locked by self. Since you need to lock all namespaces together, looks like the task takes too long. You need to split list processing for different namespaces to avoid such a deadlock. On other side, as you mentioned…
-
Hi @"makrand kulkarni", As result of your request, on confirmation, new request will be directed according to then redirect URI with only parameter 'code' inside. It would look like: <Your redirect URI>?code=<code to be used in /oauth2/token> You can use any code able to handle your URI (either provided by Dropbox or no).…
-
While using SDK, the care for details is usually SDKs code's task, not to the code where SDK features are called from. Though, for all possible parameters in redirect URI you can take a look on /oauth2/authorize, in RETURNS section.
-
@"sanjeev_hansanur1" wrote:... convert the inputstream to string Hi @"sanjeev_hansanur1", A good way to convert raw input stream to whatever you want (including string) is wrapping it using DataInputStream class. The benefit here is that you don't need buffering, so the need of engaging memory decreases. Processing happens…
-
😁 And... Ok, be more initiative... I can't guess what's the result!!! Again, are you able list (within your application) the target file where you know "Hans Gustafson" resides in (in particular)? By the way, "include_highlights" default value is False, so it's meaningless here.
-
Ok... Try investigate what's wrong now... Is there some error?... Are you able reach to/list the file in interest?...
-
Did you reissue the token in use? 🧐 Take in mind that token caches the permissions state and any change is NOT retroactive!
-
Aahh... You are trying a team account... In such a case any file/folder access (like the one 'search' do) need to be performed behind particular user (not the team). That's why you have to "personalize" (if could be said so) your access while using team account. This could be done automatically by just removing all team…
-
There is no reason any shared folder (either shared by you or shared to you) to be something limiting. I just checked and everything seems to work fine. You can look for the issue further, as trying to reach the particular file where you are expecting something to be found. Are you able to navigate, using your application,…
-
🙂 Of course, any application does list/access only files granted by available token(s). Have the "other users", that you mean, granted your application access to their accounts? 😉
-
Hello again @"amjadkhalil", I have no idea what exactly you have tried, but as far as I know there is no way to change the type of the application once created, unfortunately. Would be fine such an option to be added at some point in the future by Dropbox team. Anyway, it's missing now. That's why I told you that have to…
-
Hi @"amjadkhalil", Since your application uses app folder, it has lost access to the rest of entire user content. This is possible mistake at application creation time. You will need to recreate the application with full dropbox access, if you really need such. 😉 Hope this helps.
-
@"makrand kulkarni" wrote:... 1 Is there any other solution where Auth code can be taken Internally by Application ? ... As you already guessed, Yes, using redirect URI. @"makrand kulkarni" wrote:... 2. In which Parameter Auth Code can be taken in response of redirect-uri ? ... You can take a look on a web example to take…
-
@"Jistix" wrote:... When users connect our app to Dropbox via OAuth, the process is successful, but the users are not able to see any of their files or folders within our app. ... Hi @"Jistix", To be able see your users files or folders, you need call to 2/files/list_folder[/continue]. As you can see there (AUTHENTICATION)…
-
Webhooks OverviewWith webhooks, your web app can be notified when your users' files change, rather than requiring your app to frequently poll Dropbox for changes. Every time a user's files change, the webhook URI you specify will be sent an HTTP request telling it about the changes. ... @"peyo", 🤔 What are your users?…
-
@"peyo", in addition to what Greg said, when you only need to link your own account to the application, generating refresh token will work in the same way as long lived access token did before. Take a look here how you can get to a refresh token. 😉 You don't need to use it, just don't revoke it. Hope this helps.
-
Hi @"makrand kulkarni", 😁 You are in confusion. There is no way to get refresh token based on access token; the sequence is opposite! You have to get a refresh token and after that you SDK will take care for the rest (including access token generation. Take a look here and here for more info. Hope this helps.
-
Hi @"itsisaf", If you have a shared file link, then you don't need any API to get its content. Just get it as you would do for any other link. Only additional thing you can care, if need, let link gets redirect before reaching final stage. In addition usually proper parameter for raw access is needed to be set (if not…
-
Hi @" Jasmine jj", Take care. 🙂 You are asking the Dropbox server for your file requests count, not some files count! 😉 That are different things. There is no direct way; you have to list files in particular folder, if you want. That's it. Hope this helps.
-
Hi @"sanjeev_hansanur1", There are some examples where you can select from to test or get idea. You don't need access token directly since Dropbox Java SDK takes care about it. To create client object you need to create DbxCredential object (for accessToken set some arbitrary string and for expiresAt set zero). Depending…
-
@"Greg-DB" wrote:... In any case, it still sounds like the right solution here is to move the long work out of the callback. Yes, one simple "fix" (might not be the best in all cases) can be replace function declaration like: success: function(files) { to something like: success: async function(files) { And yes, on Firefox…
-
@"Ashrafali", I'm wrong in my previous post. Seems 'success' callback is called asynchronously. That's why it can't stop/delay chooser disappearance. To be honest I can't reproduce your issue. 🤔 Can you share some code sniped representing it?