Comments
-
Hi @"1575475", The action, you are trying, seems not granted to you (your access token) for some reason. The translation "berechtigt"->"authorized" is not fairly correct. 😁 Once you get receiving this error message you application seems completely "authorized", otherwise you would not be able get to here. 😉 Possible…
-
While you are sticking to the same account - Yes (by Dropbox promises). You didn't changed account on upgrade and wouldn't to change it on downgrade - the bonus points should keep the same (they can be seen here). Take in mind that the same bonus earning leads to different earned space on different accounts plan, so 25GB…
-
@"Omri1984" wrote:... by the way. if create a new DropboxTeamClient(request.AccessToken, request.RefreshToken,request.Expires,ClientId,ClientSecret); can I call those methods var account = await client.AsMember(request.AsMember).Users.GetCurrentAccountAsync(); ... Hi @"Omri1984", Overall idea is correct (only…
-
@"himalayantrekkers10" wrote:hi i want to know how to create direct download link for ab website file hosted in dropbox Hi @"himalayantrekkers10", At the beginning can you clarify what's not clear in Greg's post above? There are directions you can use. In addition you don't need to check if a link exists or not (in such a…
-
OMG! Yes, such things don't have to be shared (can be dangerous - direct access to your account on the wider public)! That what you are sharing looks like access token. It's NOT application key. The application key is ID of the application you have registered. You need this key, not the access token. The last error comes…
-
Oh @"sambapy", Be more careful!!! What's this: this is long-gibberish ??? 🤦 Seems you have NOT made even a small try to get familiar with structure of such code and just trying to "shot on directions". Take the real client id (or app key too) and put it there. Follow the same rule on all other places where you have to put…
-
For an example using Python, take a look here. You can keep the refresh token and use for follow up instantiation without full OAuth flow. Just put file listing procedure on the place of 'users_get_current_account' method there. 😉 Hope this helps.
-
@"sambapy" wrote:Do I need some special permissions to ... If you mean scopes, Yes (but they are not special 🙂). Every operation falls to some group that expect particular scope. Your application (and all associated tokens) needs granted appropriate set of scopes to be able perform needed operations. Scopes can be changed…
-
If you mean, what's needed to authenticate a regular call to API endpoint, Yes - valid access token is enough. As I said access token validity is limited in time to no more than 4 hours (could be less) - exact period is denoted on access token receiving. If you mean, additional steps for long term access, refreshing is…
-
@"sambapy" wrote:... When I login to Dropbox through the website, the folder structure for the folder that I want to access looks like so: Folder/ SubFolder/ SubSubFolder. ... Hi @"sambapy", Base on names posted by you (i.e. starting from your account root - Folder > SubFolder > SubSubFolder), the string describing the…
-
Hi @"Jay G.4", That was exactly what I said. Probably you misinterpret the target of word "unusual". Unfortunately, such problems appearing is something usual. 🤦 Unusual is they to get solved by application development team! Problems like this (and not only) stay for years and left unsolved (without any intention to) or…
-
Hi again @"mukesh111", You can download a folder as zip file. You can use the zip stream using files_download_zip and unzip the content on fly or save it as file using files_download_zip_to_file. 😉 Good luck.
-
Hi @"mukesh111", Take a look on Greg's post on this page top. There is pretty clear where 'team_space_namespace_id' comes from. Try reproduce something similar. 😉 One more thing, at present access token is 'short lived' only. If you need long term access, refresh token may be object of consideration from your side. Hope…
-
In such case, the only reason can be you have set different email in 'emails' parameter that the one you're exploring. You may have added or remuved some letter/digit or incorectly set some symbols (digit zero and letter O looks pretty similar on some fonts for instance). 🤔 Make sure there are missing such mistakes (it's…
-
Hi @"infra", In spite the user ******@yyy.com can't see the folder in his space, can the same user find it out in his shared folder list here? Check this out. 😉 Hope this helps.
-
Hi Victor, Did you try to sign out of your Dropbox account in the background window, seen on your post (not the small one), and try to open the same link again (without signing in back in your account there). If not, try it. Does the link open properly in this case? Good luck.
-
Folder creation can be skipped. The folder will be created on first file upload if missing. 😉
-
@"purringpigeon" wrote: ... But my old call was not compiling. That's not something API related! Check what's wrong in your syntax, compiler options, etc.
-
https://www.dropbox.com/developers/documentation/http/documentation#files-upload
-
@"purringpigeon" wrote: How do I set the mode? I don’t see the option on the new API. @"purringpigeon" wrote:... DBFILESWriteMode* mode = [[DBFILESWriteMode alloc]initWithOverwrite]; [[self.restClient.filesRoutes uploadData:@"/ServiceReport.sqlite" mode:mode ... ... Something that's missing in you second code snippet! This…
-
@"Omri1984" wrote:... and befoe every call i am calling the var client = new DropboxTeamClient(request.AccessToken, request.RefreshToken, request.Expires, ClientId, ClientSecret); and I need it because that sometimes i am handing for the same client al the data content and all the user and groups as well ... You don't need…
-
The token itself (both refresh and access) no (the above call is NOT affected). You have to take this in mind when actual API calls are performed (adding additional headers, whenever and if needed, on business account - as you are doing). That's it.
-
My version is definitely not the up to date one. Dropbox regularly drops some important features for me. That's why I keep relatively old version with feature available that are missing in new versions. The selection view is not such a feature, as far as I know. Other users in this forum confirmed it works. I don't know…
-
Just for reference, a selection process on some pictures. Initial (no select mode view): After selection of the first image: Now everything else in the same folder can be selected and be performed action from ellipsis menu (up-right corner). I haven't changed any settings, it's so by default.
-
Hi again @"Tinchohs", To be honest I don't have iPad, but the explained works in such a way on my phone, so I suppose for iPad could be the same. On first tap and hold only the selected file will get selected, not immediately others! The file will not being opened in some application, associated to corresponding file type…
-
Hi again @"Omri1984", To be honest I expected your token empty, but it seems Ok, at least. Let's see is it really Ok or not actually. Execute following command in terminal: curl https://api.dropbox.com/oauth2/token -d grant_type=refresh_token -d…
-
Hi @"Omri1984", Can you just print (or display somehow) content of "request.RefreshToken"? Is there something that looks like valid refresh token or not exactly? 🧐 Hope this gives direction.
-
Hi @"purringpigeon", Where you have set the mode to overwrite (as in first version)? 🤔 If missing, the behaviour is normal when file with the same name already exists. 😉 Hope this gives direction.
-
@"1575475" wrote:... IMHO the question is not why I'm getting an error (which is pretty much clear), but why this popup appears. ... Exactly, that's why you have to redirect your question to platform provider or read the documentation. As a good troubleshooting step if possible, dump and evaluate raw communication between…
-
@"1575475" wrote:Sdrastwuj Sdrawko, I used to learn Russian at school, just about 50 years ago, but almost forgot everything 🙂 At least I'm still able to "decipher" cyrillic letters. ... 😁 Здравей Йан, I have no idea where you decide from that I'm Russian. If the only reason are Cyrillic letters, what alphabet is in use in…