Comments
-
@"tkirby926" wrote:..., with api calls made client-side to upload and download images that populate the site. ... Hi @"tkirby926", Such a intend is never good idea. Client side authentication of calls is possible - just send refreshed access token every time particular page need to do some interactions using Dropbox API.…
-
@"serhiisv" wrote:... The page on the frontend is a gallery where the user marks the files he would like to import with checkboxes. ... ... - Requests a temporary link to a file files-get_temporary_link 0.3 sec/each * 10 files = 3 sec ... Hi @"serhiisv", Usually there are ways to optimize the workflow, but this is…
-
On an existing application you cannot change this! When you created your application you have set some type of application permissions. If this type is "App folder", you don't need to do anything more - you got it already. If you have something else selected, you need to create new application and select proper type…
-
@"Cinelist" wrote:... Is it possible to limit an app token (generated with the OAuth2 flow) to a given folder in the corresponding Dropbox? ... Hi @"Cinelist", No, you cannot limit access to particular folder for token. You can set in your application some folder to be root (actually re-rooting), but this isn't a…
-
@"vas92" wrote:... The message "Sign in to your work account!" appears. What is this problem? ... Hi @"vas92", Seems you are trying to link team scoped application to non team account (personal account). 😜 That's the your problem. @"vas92" wrote:... This was not the case a week ago! ... Have you changed something in your…
-
@"dpawson" wrote:... Not via dnf update, but re-install? Is the repo up to date? ... Good note @"dpawson". 😉 As always there are some stupid moves. Absolutely meaningless a completely new package created, instead of add the new plugin in the existing package. That's why just dnf update wouldn't work - there isn't anything…
-
Hi @"bspindia", 😁 Your file comes uploaded correct, seems. If this file is image, as you're stating, missing proper file extension in the file name can disturb the file handling/previewing on Dropbox site (in spite it's still valid). 🤷 Unfortunately, Dropbox isn't so smart. That's why don't forget set proper file extension…
-
Hi @"noa vinik", Have you turn Dropbox Backup on by any chance (maybe unintentionally)? Take a look here to check it. If so, that's the problem and you can turn your backups off as described. Hope this helps.
-
@"bspindia" wrote: ... curl_setopt($cl,CURLOPT_POSTFIELDS,'{"****my_AppKey******":"***AppSecret*******"}');... What's this? 🤔 Why it's here? Authentication passes through BASIC authentication or passed as a independent parameter(s) (what's this post parameter that you are posting above actually 🧐). Can you point exact…
-
@"bspindia" wrote:... i should keep refresh token and request for shorl live token using refresh token using curl to make api calls, ... Either 'curl' or 'fetch'... Yes.
-
@"bspindia", don't be so lazy! Don't ask question that I just explained in my previous post above. Ok. I'll repeat again: one of the possible usage of mentioned call is access token refresh!!! Do you need such a refresh (i.e. your access token expired as explained here, for instance)?
-
@"bspindia" wrote:means i have to make fetch with received code for token, right Did you read the documentation? What is the call /oauth2/token, you asked about previously for? 😉 Also, take in mind the above call is used in different situations, with different params (different results, of course) - when you are getting…
-
@"bspindia" wrote:... again i made a location.assign("... Why "again"?! 🤔 You have already all you can get from this page (i.e. the code). What are you looking for there again? 🧐 @"bspindia" wrote: ...but got 400 error as Unexpected response_type request param value. Yes, it's normal. You haven't set 'response_type'…
-
@"vas1992" wrote:... I am getting an error: ... Of course, when you are using invalid object, errors can be expected. Even more, would be strange if it passes without error.
-
@"projectdeliverypartners" wrote:... I would very much like to avoid copying whole project folder location if i can. ... Hi again @"projectdeliverypartners", To be honest I have no idea why you need this copy, delete, etc. 🤔 Isn't keeping the files on single place doesn't work for you? (Let's say keep them outside the…
-
Hi @"projectdeliverypartners", I see what you want to achieve, but activities exactly what you want are not supported. While on Linux it's relatively simple to do something alike (pause and resume, after you have done) using shell script, on Windows it isn't so trivial. In all cases you can upload all target files…
-
@"vas1992" wrote:... I don't know how to extract "allocated" from here. Hi @"vas1992", You can do it like any other field on any other object in Python (as programing language). Just read what you have got in documentation. 'users_get_space_usage' method returns SpaceUsage class object. You have successful get in touch to…
-
Hi @"bspindia", You cannot call /oauth2/authorize as regular API call (or similar)! This is address you should redirect to (either explicitly or with web link) your web session to let user authenticates. So you cannot use 'fetch'. To get some of results fields (including the code) you have to "catch" it in your browser…
-
Hi @"bspindia", The call /oauth2/token doesn't support Bearer authorization. It's used to receive such a token, not to use it. Can be used Basic authorization to pass application key and secret or pass them as parameters. Depending on exact step you are performing other parameters should be passed too, but you are skipping…
-
Hi @"sundar_papco", You can review all Dropbox Java SDK related examples here. 😉 Good luck.
-
@"MightyModest" wrote:... I think my confusion is about how to implement a Python-specific way of using that refresh token to constantly grab a new short-lived token. ... I've searched for an example of how I can programmatically (I imagine via a cron job that runs more frequently than the four hour expiration time) use my…
-
Hi @"DylanC", Sounds like you're using group/business account and when upload a file you are pointing the place without explicitly set path root. Am I right? Take in mind that by default path root is the member folder (both for admin and regular user), not the account root (as seems, you are thinking 😉). That's where your…
-
Hi @"MightyModest", You are doing well initial authorization steps! 😉 So, you already have all needed to be able perform regular API calls. The API calls accept access tokens only, NOT refresh token!!! That's where start your errors. First, don't try replace the access token with refresh token - as you know already it…
-
@"Kronisk" wrote:... The one clue I have is that due to security or OS changes, the Dropbox required folder is now somewhere in the hidden Library folder, the location of doom for users who are not confident. Hi @"Kronisk", Yes, you are correct; the new (now mandatory) Dropbox folder location is…
-
Hi @"jbrede", As far as I can follow the logic of your code (in spite incompletely represented), you are trying to store Excel data as Google sheets. 🤔 Am I correct? If so, why? Hope this gives direction. PS: Just changing file extension doesn't change the file type! 😉 In your case you have Excel file content labeled with…
-
not_allowedVoid The user is not allowed to request a temporary link to the specified file. For example, this can occur if the file is restricted or if the user's links are banned. Cite from here. 😉 Hope this clarifies matter.
-
@"Megan" wrote:... Can you let me know more in regards to your issue?... @"Megan", can you let @"yendrrek" know how you have installed Dropbox application through official Dropbox repository on a fresh Fedora 37? 😉 Step by step walkthrough would be much more clear! By the way... did you do it actually? 🧐🤔 If no, try it and…
-
@"koizpad" wrote:... I want to be able to update a file while maintaining the same Dropbox shared link. ... Hi @"koizpad", Yes, that's the exact behavior when you update a file. 😉 You don't need to do anything more. @"koizpad" wrote:... However, when I replace it with another file with the same name, the link no longer…
-
@"LarsD" wrote:... Now I need a URL to share/open for that id. ... Hi @"LarsD", Do you mean a shared link? 🤔 If so, you can create such link using /2/sharing/create_shared_link_with_settings API call. 😉 Just put id as path there. If link already exists for particular id, shared_link_already_exists error will get back…
-
@"OLIM" wrote:I do not know where to store this token. ... Hm...🤔 really... 😁 Where you are keeping your application configurations? 🧐 ... different registry types, config file, some local wallet,... etc. 😉 The choice is yours! Most probably you have already made it if I have to bet, but you still don't understand it.