Comments
-
No, Dropbox does not offer a web hosting service.
-
Yes, deleting the app will also prevent the access token from working.
-
Yes, an access token enables access to an account via the Dropbox API to the extent allowed by the app's permission. For this reason, you should never share or expose an access token for your own account to others users. Users should only ever have access to their own access token(s). Given that your access token has been…
-
Thanks for the report! We'll look into it. I don't have a workaround to offer unfortunately though.
-
When you register an app, you get an app key and secret that identify your app. You additionally can "Generate" an access token, which enables access to your own account. While the app key (and sometimes the secret) may be used in your app, you generally shouldn't embed your own access token in your app itself. You should…
-
Thanks! I don't see an issue in that code, so please open a ticket and share the relevant account IDs so we can check on these: https://www.dropbox.com/developers/contact
-
[Cross-linking for reference: https://stackoverflow.com/questions/52523055/how-to-display-an-image-from-dropbox-to-mvc-razor-view ] Using the GetThumbnailAsync method is the right way to get the thumbnail data for an image file. That works the same way as the DownloadAsync method, for which there is an example here:…
-
You don't need to enable anything on our side to be able to reach the Dropbox API servers. The Dropbox API servers are working correctly right now, so based on the error message you shared it sounds like you may be having a network connectivity issue. Is there anything on your network connection, e.g., firewall, proxy,…
-
As a security feature, OAuth 2 redirect URIs must be pre-registered exactly. Wildcards and dynamic registration are not supported. Instead, you can use the 'state' parameter to store variable information and receive it back when the user returns to your app:…
-
Thanks for trying that, and my apologies for the trouble. I'll follow up here when I have any updates on this issue.
-
@"Gamabit" No, unfortunately I don't have any news on this yet.
-
It sounds like everything you're looking for is possible. One note though: if by "group" you do mean a Business team group, you don't need to explicitly accept that group in the account after it's added. You may be thinking of shared folders, which you do need to explicitly add. So, to be specific: * to add a team member…
-
Yes, this is likely related to the number of files, but possibly also the amount of file activity. (So, yes, as the number of files goes to infinity, the working limit would go down.)
-
Each endpoint has a curl example in the documentation (in the links in my previous post). I recommend reviewing those and translating them for your platform as necessary. The API v2 Explorer may also be useful in this regard: https://dropbox.github.io/dropbox-api-v2-explorer/ The SDKs each also have some examples included.
-
You do not need a 'parent_shared_folder_id' in order to share a folder. You can share a non-shared folder using /2/sharing/share_folder by specifying the 'path' of the folder you want to share: https://www.dropbox.com/developers/documentation/http/documentation#sharing-share_folder When you get the successful result…
-
Dropbox does offer the ability to upload files programmatically. You can use /2/files/upload to do so: * https://www.dropbox.com/developers/documentation/http/documentation#files-upload Or, for large files, you'll need to use upload sessions: *…
-
Yes, Dropbox offers an API you can use to programmatically list, upload, and download files, among other operations, such as checking sharing metadata. For example to list any/all files and folders in an account: * https://www.dropbox.com/developers/documentation/http/documentation#files-list_folder *…
-
Thanks for the report! This can be related to these operations taking a long time due to a large number of files and/or a large amount of file activity in the affected account(s). We'll look into it, but there are a few potential workarounds: 1) Use the 'limit' parameter on files_list_folder:…
-
@"santosh111" Dropbox does offer an API you can use for programmatically uploading and downloading files. You can find everything you need to get started with the Dropbox API, including documentation, tutorials, and SDKs here: https://www.dropbox.com/developers For example, to download files:…
-
Thanks! To clarify though, I was asking for the name and version of the Dropbox SDK (not iOS version) you're using, if any. E.g., are you using SwiftyDropbox or the Dropbox Objective-C SDK, and if so, what version number do you have installed? Anyway, that clock icon you referred to is actually a Safari icon. That's…
-
@"gagsbh80" Can you clarify which value you're looking at from the API? Please share the rest of the code you're using to process the result from GetSpaceUsageAsync if possible. Note that there are multiple 'used' values returned in a SpaceUsage, e.g.: * SpaceUsage.Used: the user's usage * TeamSpaceAllocation.Used: the…
-
It looks like the third party library you linked to doesn't implement copy references unfortunately, so you won't be able to use that for this without modifications. You'll need to implement code for linking both users to the app (see the OAuth guide linked earlier) and then the code for getting the copy reference from one…
-
Thanks for the post! I'll look into this and follow up here once I have some information for you.
-
I'm afraid I can't offer more information than what's documented for that error in this case. An 'invalid_access_token' error means that the access token used to make the API call isn't valid, e.g., it wasn't a valid access token, was revoked by the app or user, the app folder (if using that permission) was deleted, or the…
-
@"astybiz" Are you offering to help Alex, or, are you looking for help with uploading and downloading on the Dropbox API? The Dropbox API does offer the ability to upload and download files. To download files, you would use /2/files/download:…
-
@"jakera" Thanks for the feedback!
-
I'll make a note to follow up on this thread if/when a better solution is implemented.
-
That ID with "id:" is the file/folder ID, but the add_folder_member requires the "shared folder ID", which is an integer. You can get it from /2/files/list_folder[/continue] in FolderMetadata.sharing_info.shared_folder_id, or /2/sharing/list_folders[/continue]…
-
No, unfortunately I don't have any news on this.
-
Using upload sessions is the right way to upload large files. There's an example of doing so in the .NET SDK here: https://github.com/dropbox/dropbox-sdk-dotnet/blob/b8f5c751f9df6765f4e2bbb98b39bc6bde5cfadc/dropbox-sdk-dotnet/Examples/SimpleTest/Program.cs#L436 Hope this helps!