-
V2 web authentication - option to create an account?
In the V1 API, when using web authentication from iOS, there was an option at the bottom of the screen "New to Dropbox? Create an Account". In the V2 web authentication this has changed to "New to Dropbox? Get the App!" which redirects to the App Store. This is problematic in that it adds complexity for a new (and possibly…
-
OAuth2 token with iOS SDK
Hello, I'm currently migrating one of my iOS app to the V2 of the API. When a user authorize my app to use its Dropbox account I want to retrieve the OAuth2 token to share it with my server to allow long running backgroud processes. This worked fine with the V1 of the API and still works fine in V2 when the authorization…
-
Swifty Dropbox Batchupload
I am trying to write batchupload function in swifty, and it works. But I cant get access to async_job_id after I call uploadSessionFinishBatch. client.files.uploadSessionFinishBatch(entries: finishArgArray).response{ response, error in if let result = response { print(result.description.) } } I can only access description…
-
[Android] Effective way to download files
Hi. In my app I need to download a lot of small files (0.1 - 5MB). For example now I have got 50 files and I download them by using this code foreach: FileOutputStream fOut = null; File file = new File(localPATH, localName); if (file.exists()) file.delete(); file.createNewFile(); fOut = new FileOutputStream(file);…
-
How does Redirect URI in App Console work
Hello, I am developing an application where I want to integrate Dropbox with the Python SDK and later on I want to have webhooks. I don't want my application to be publicly accessible, but I know that because of webhooks I need to have a publicly accessible URI. How does that work with the Redirect uri when I request an…
-
Dropbox requests via a server
We need users to login to our system only and access one dropbox account only. In other words many users access the same dropbox account. That account is a company account with shared readonly documents. We don't want the users access the dropbox account, so the server only has the credentials to access that only dropbox…
-
RIFF header is removed in uploaded audio file
I upload .wav file to dropbox with the following code in Android app: DbxRequestConfig config = new DbxRequestConfig("dropbox/java-tutorial", "en_US"); mClient = new DbxClientV2(config, ACCESS_TOKEN); InputStream in = new FileInputStream(filePath); FileMetadata metadata = mClient.files().uploadBuilder("/Folder/" +…
-
iOS - how to tell folder from file packages?
Here's the question on SO : http://stackoverflow.com/questions/42988225/ios-dropbox-api-how-to-tell-folders-from-file-packages
-
Upload Image with Dropbox API
I am not able to upload the image file content in a correct way. the file is uploaded but content is corrupted.. Here is my code OrderedHashJava headers = this.getCustomHeader(this.getAccessToken()); headers.put(HEADERS.DROPBOX_API_SELECT_USER,u.getDropboxTeamMemeberID()); headers.put(HEADERS.CONTENT_TYPE,…
-
Cannot build with the latest Dropbox v2 API 4.2.3 version
Hello, I am absolutely happy with the new Dropbox v2 API. Amazing work, thank you. I cannot however update from 4.2.0 to 4.2.3 version. It is probably a minor problem with the versioning of your library. When I look at the details I can see Version 0.1.6274.34602 but the following error message mentions missing assembly of…
-
iOS Build error: No visible @interface for ‚DBUploadTask<DBFILES…> declares the selector 'progress'
I get the error message above after adding a method to upload files to DropBox (syntax identical to sample code in tutorial). Change of „Other Linker Flags“ in Project and Target to $(inherited) -framework "ObjectiveDropboxOfficial" had no effect. Anyone has an idea?
-
Upload folder
How can I upload folder using API call?
-
V2 Chooser SDK?
I implemented an android app over a year ago using the Dropbox Chooser. This was based, I guess, on V1. It was a snap. I think I did it all in one day - wrote less than 10 lines of code, dropped the dropboxChooserSDK into my project and I was done. I see I am now forced to migrate to your V2 api. There does not appear to…
-
How do you track when only a file's contents have changed (API v2)
How would I track when a file's contents have changed remotely? I've seen the "rev" value, but this also increments when the file is moved/renamed, and I'd like to ignore any changes not related to the content changing.
-
Generate File List in Excel VBA using Dropbox API
Hi there: I would like to create a list of all files in Dropbox in Excel using Excel VBA and Dropbox API. This should include all file information include Checksums. NOTE: The actual Dropbox Desktop client will NOT be installed and the files in my Dropbox are (therefore) NOT synchronised to my computer. This will allow me…
-
Shasum or MD5Sum information in File Metadata
Currently we dont find any way to get md5sum or shasum of the file in the metadata without the need to download the complete file. Is there any way we can get this information ?
-
Url of the file instead of a buffer in uploadSessionAppendV2?
Is it possible to send url to the file in call to sessionappendv2 or sessionstart. The reason is that whenever I try to upload files in sequence, I am getting memory leaks in node, becase it keeps the result of reedFile() in memory, which I must call sequentally. If sum of all parts of splitted file is bigger than 500mb it…
-
Utilizzare le api aiuto in italiano
Ho bisogno di utilizzare le API di dropbox, ma non conosco l'inglese e non trovo documentazione in italiano Non devo fare niente di troppo difficile, via PHP vorrei poter verificare se esitono dei file nel mio dropobox e creare o copiare cartelle dal interno di dropbox verso l'interno di dropbox qualcuno puo aiuttarmi?…
-
How to get OAuth2 access token from OAuth1 token and secret with API v2 JDK
String my_app_key = "test1234"; String my_app_secret = "test567"; String client_app_key = "cltest123"; String client_app_secret = "cltest456"; DbxAppInfo appInfo = new DbxAppInfo(my_app_key, my_app_secret); DbxOAuth1AccessToken oauth1AccessToken = new DbxOAuth1AccessToken(client_app_key, client_app_secret);…
-
android file upload speed?
Use the file upload from the dropbox api to create an Android app. But upload speed is only about 30 kb. Is there a way to speed it up? try { InputStream inputStream = new FileInputStream(localFile); if(type == Define.DROPBOX_IDCARD){ return mDbxClient.files().uploadBuilder("/id_card/" + remoteFileName)…
-
Setting initial folder while choosing file in iOS
Looking for a way in iOS app for letting a user choose a file from Dropbox folder for reading. Initial folder presented to the use should be the folder used by the user last time. User should be able to navigate to other folders.
-
Use of Dropbox Chooser in Chrome Extension
I am attempting to use a Dropbox Chooser in my chrome extension. However, when I click the chooser, I get the error: {"error": "Origin does not match any app domain"} Since it's a Chrome extension, the chooser URL is as follows:…
-
Change app name
(app console) How can i change the app name when the app is in Production? thnak you
-
swifty dropbox route error incorrect offset
Hi - I'm using Swifty Dropbox to upload individual files to another dropbox using let dbClient = DropboxClient(accessToken: "xxxxx....." and the methods func doUpload(fileName: String) func uploadFirstChunk() func uploadNextChunk() In this part: dbClient.files.uploadSessionAppendV2(cursor:…
-
Receiving Media Info via /search call
Dear sir, Please info ... What dopbox permit program if the data we have didropbox disseminated through websites that we have. What there is a procedure to be followed to obtain a license. thank you
-
Store upload request to a class var and cancel it later
Hi, I'm implementing Dropbox in my latest app. The app needs to do upload, share files and retrieve the shared links. This is done the following way. 1. The app checks if the file is previously uploaded by id 2. The app checks if the id has shared link and if id doesn't goes to step 4 3. The app requests links and then…
-
Download a file or directory
Hey guys, actually I am trying to program a Java application which can enter dropbox, look up which directories and files exist, upload a file and download a directory. Unfortunately I have some problems with the downloading part. Every time I try to download only a file the it tells me that: Exception in thread "main"…
-
How to know when user unlinks app or delete app folder in android
How to know when user unlinks app or delete the app folder in android?
-
Android(Java) Dropbox API v2: how to get file thumbnail and uri?
How to get the file thumbnail image and uri with Android(Java) Dropbox API v2 please? Urgent""" It'sa easy to do with API v1, but I couldn't find those methods in v2 anymore, please help
-
https://www.dropbox.com/1/oauth2/redirect_receiver in v2
Hi, I've been using the following url 'https://www.dropbox.com/1/oauth2/redirect_receiver' in console application when going through the oauth2 process. Will there bee an alternative to this for the v2 api. Reason I ask is I'm working my way through the following and its not listed:…