-
Need a custom web-page where students upload files into a teacher's Dropbox. I use Dropbox for ...
Business and created a web-page with upload files from my web-page to my dropbox folder with API/C#/OAuth2, what about other people uploading into my folder?
-
Autorename for existing files on upload does not rename .NET
Here is the piece of code which is supposed to rename an existing file and upload it to Dropbox. It simply does nothing. What am I missing here? using (var memFile = new FileStream(srcFile, FileMode.Open, FileAccess.Read)) { var uploadFile= await dbx.Files.UploadAsync("/myfolder/" + fileName, WriteMode.Add.Instance, body:…
-
Disable "Sign in with Google" Button
Hi, the login page automatically has the "Sign in with Google" button. Can I disable it ? (OAuth2) I found this but it's a half year old. https://www.dropboxforum.com/t5/API-support/How-to-appear-quot-Sign-in-with-Google-quot-button-in-the-login/td-p/199107 Thanks
-
API always returns invalid_access_token, 500 error when i go to "my apps"
Hi, I understand that there was some service disruption about 10 hours ago. However, I believe this has been resolved now. When I generate an access token using the dropbox java sdk on my Android app, it is generating an access token fine. However, when I use this access token to authorise my account and run something like…
-
Error 500 all the day
Hi team. Today i was trying to create an app token but I can't, still can't: Version:1.0 StartHTML:000000202 EndHTML:000000855 StartFragment:000000501 EndFragment:000000817 StartSelection:000000501 EndSelection:000000817 SourceURL:https://www.dropbox.com/developers/appsDropbox - 500 Error (500)Something went wrong. Don't…
-
[account/login_with_password] App doesn't have permission to use this API
What dropbox app permission is needed to use account/login_with_password?
-
Where can I find the trusted root certificates used by Dropbox?
I'm developing a software that connects to Dropbox over HTTPS. I would like to pin the trusted root certificates. Where can I find the trusted root certificates used by Dropbox?
-
redirect_uri to local file
hi, I want to redirect to a local file the authorize. In the redirect uri of my app I put file:///C:/test/redirect_uri.htm , an empty page but the browser gives error. If I put http://localhost I can catch the access_token but I receive it in CppWebBrowserNavigateError with a status error of 0x800C0005 How can redirect to…
-
Upload a file via wininet with a POST
Hi Team, we are using the Dropbox REST API with OAuth2. When attempting to upload a file I don't know where to put the file contents using the wininet for http way. In the docs there is just a curl example curl -X POST https://content.dropboxapi.com/2/files/upload \ --header "Authorization: Bearer " \ --header…
-
Exception java.lang.NoClassDefFoundError: Could not initialize class com.dropbox.core.DbxHost
I am creating a Java webapp with dropbox sdk. The code is StandardHttpRequestor.Config.Builder requestorConfigBuilder = StandardHttpRequestor.Config .builder(); List<Proxy> proxies = ProxySelector.getDefault().select(new URI("https://www.dropbox.com")); for (Proxy proxy : proxies) { requestorConfigBuilder.withProxy(proxy);…
-
Categories of API partners to apply API limit
There's 2 types of dropbbox partners which have different API limit: * Platform partners (excluding data transport): Unlimited API calls to SIEM, DLP, IDM, DRM, and dozens of platform partner categories * Data transport: 25,000 API calls per month If you need to transport large amounts of data to Dropbox on an ongoing…
-
com.dropbox.core.ServerException when getting file list from dropbox
Hi, I'm getting com.dropbox.core.ServerException when requesting file list from account. Few hours ago it worked fine, but now it's crashing. y = mClientV2.files().listFolderBuilder(mPoint).withRecursive(true).start(); while (true){ for (Metadata metadata: y.getEntries()){ // some job } if (!y.getHasMore()){ break; } y =…
-
API upload fails. Can not connect to api-content.dropbox.com for 32-th chunk
I use the dropbox API to upload files. It is latest API version. Uploading is with chunks of 20MB . Recently it stopped to work for big files. I notices it stops to work at chunk 32 . All chunks before this are fine. And then on nex chunk my script can not connect to to dropbox server TCP connect to api-content.dropbox.com…
-
Sharing an app folder
I would like to create an iOS app that saves some voice recordings into an app folder. Then the iOS app should mail a link to the app folder to other users, who (using the same iOS app) should be able to listen to the recordings. 1) Using Swiftydropbox I cannot create a shared link to the app folder, "" is not supported, I…
-
Get children of Shared link of folder - Java
Kindly tell me a way to get access to children of a folder whose url is provided to public. I am using Java and V2 version of Dropbox Api. I searched the whole api, but could not get a solution. All I could do was to find metadeta of the folder i.e. SharedLinkmetadata but of no use to me. Thanks.
-
Integração Dropbox e VBA
Estava mechendo aqui no VBA do Pacote office e percebi que existe a livraria "DropboxOfficeLib", Existem alguns comandos que gostaria de saber se alguem sabe me dizer pra que servem como por exemplo ; - GetDescription(pRibbonControl As Object) As String - GetVisible(pRibbonControl As Object) As Boolean
-
DropboxOAuth2Helper GetAuthorizeUri removing port from redirecturl?
When using the DropboxOAuth2Helper.GetAuthorizeUri - we pass in the following params: var response = DropboxOAuth2Helper.GetAuthorizeUri(OAuthResponseType.Code, ClientId, redirectUrl, state); Where the redirectUrl is a link similar to the following: https://my-site.domain.com:443/rest-of/the/url/auth-complete However the…
-
How to authenticate multiple accounts in app without checking account‘s password again
I write this content at github.com . Link:https://github.com/dropbox/dropbox-sdk-java/issues/160
-
problem initializing DropboxClient instance
Hi all, I could achieve file upload from Web API. I get the posted file, and I could upload it to dropbox and get shared URL of the upped file. However, deploying the app to Azure, I get an exception when creating the DropboxClient object, and all information is: ErrorMessage: "shared_link_access_denied/" ErrorResponse is…
-
iOS 11 - Dropbox app not handling NSURLs from UIActivityItemProvider objects
Hi My iOS apps allow users to interact with their data objects and share them in several different ways via UIActivityItemProvider objects in a UIActivityViewController. These include text strings for SMS, email and social sharing; XML and tab delimited text for spreadsheet applications; and NSURLs for “Open In”…
-
List / download from other users' public folders in iOS?
Is it possible for Dropbox users to list a folder as public, and for an iOS app to (after getting the link to the folder) list the contents of the folder and download the contents? My goal is read-only sharing of files between users, and I was hoping Dropbox could be a solution.
-
How to download files in a shared folder url with python api?
Hi I am trying to develop some script to download files shared by others, the shared url is linked to a folder, so how can download all the files in the folder. I tried dbx.sharing_get_shared_link_file, but it's complaining that the it's a folder link. And then I tried dbx.sharing_get_shared_link_metadata, I can only get…
-
How to list a shared directory via Dropbox API?
I am writing an app that needs to download all the files from a directory shared via a link. But when a link is a folder, /2/sharing/get_shared_link_file returns: HTTP/409 shared_link_is_directory/.. So then I invoke /2/sharing/get_shared_link_metadata, I get: { ".tag": "folder", . . . } There is just an indication of a…
-
API v2 equivalent of /1/metadata/link functionality is required
Please let us know the equivalent for API v2 of /1/metadata/link. There are countless reasons why this functionality is important for your API -- which you hopefully already know, otherwise I don't know how /1/metadata/link got made in the first place. If you need stats, a more detailed request or whatever, please let me…
-
Excel VBA Overriding To Restricted Folders
Hi Dropbox team, Hope you are all well… I am in desperate need of help please. I have created 2 drop box directories, of which I have Full read and write access (these are numbered 31 and 32 see below.). * Folder 1 - 31. 360Storage - The Energy Experts * Folder 2 - 32. 360Storage - The Energy Experts (Ops) I have provided…
-
AndroidAuthSession, DropboxException are not recognizable
Hello, I deleted the v1 dropbox sdk from my android app and added 3.0.4. The following things are not recognizable by android studio. Where can I check out what to use intead of (for example) AndroidAuthSession? Thanks AndroidAuthSession, DropboxException DropboxAPI private AndroidAuthSession buildSession() throws…
-
Dropbox v2 API Content-Type header
For confirmation: Is it allowed to use Content-Type header other than "application/octet-stream" and "text/plain; charset=dropbox-cors-hack" when uploading file using Dropbox v2 API (https://content.dropboxapi.com/2/files/upload)? I have tried using other Content-Type value (example: multipart_form_data) but an error is…
-
Using REST API v2 Looking for a way to have returned list of directories in root directory
Developing a client to use DropBox using C++ on a low resource device (no harddrive). Would like to list the contents of a directory such that directories are list at the top and any files below. I have searched through the API list and have found out how to use: * /files/search * /files/list_folder but neither of these…
-
Getting Streamable URL of Video using API v2 in iOS app
Using API V2, I am able to get metadata of a video file using the below code: [[client.filesRoutes getMetadata:entry.pathDisplay includeMediaInfo:[NSNumber numberWithBool:YES] includeDeleted:[NSNumber numberWithBool:NO] includeHasExplicitSharedMembers:[NSNumber numberWithBool:NO]] setResponseBlock:^(DBFILESMetadata *…
-
API Docs out of date ?
I am trying to quickly implement the v2 API, having discovered by error message that the v1 servers no longer run. The documents I see refer to DBClientManager instead of DropBoxClientManager and the setResponse examples etc are not working. Is this doc out of date? Is there a more up to date doc somewhere? I am having a…