-
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:…
-
How to use OAuth2 authentication APIs
I am writing a UWP app on Windows 10 with the .NET Dropbox API and want to allow users to login to their Dropbox. Note this is not a web app and I don't have a browser control. var authUri = DropboxOAuth2Helper.GetAuthorizeUri(OAuthResponseType.Token, appKey, "http://localhost", appSecret, true, false); var result = await…
-
Internal server error 500 with Upload sesssion start JS SDK
Getting most of the time this error when trying to upload large files. Using JavaScript SDK for requests. I got same error also on filesUploadSessionFinish call. status: 500, error: 'Error: Internal Server Error', Part of my code return fs.readFileAsync(process.cwd() + '/__temp' +…
-
Access Token is invalid in android
I am creating a OAuth2AccessToken and storing it in shared preferences. The session is successful till the app is closed. It is invalid after I open the app again. This is the code I am using to create a new session using the stored access token. String dropboxaccesstoken =…
-
task async convert to void
does anyone know a different method not using task async i want to use void public async Task Download(string remoteFilePath, string localFilePath) { DropboxClient client2 = new DropboxClient("token"); remoteFilePath = "img2.jpg"; localFilePath = Environment.GetFolderPath(Environment.SpecialFolder.Personal); using (var…
-
Can't Download File From Dropbox downloadData With Objective-C
Hello, I am trying to use the following code to download data from Dropbox using the Vs2 API: NSString *filePath = @/joelLockFolderV2_1489675832.409768.tsl"; [[client.filesRoutes downloadData:filePath] setResponseBlock:^(DBFILESFileMetadata *result, DBFILESDownloadError *routeError, DBRequestError *error, NSData…
-
Overwrite upload
In Dropbox v2 sdk, the need to cover the replacement of existing documents, how to achieve? Similar to V1's ChunkedUploader.finish (path, parentRev). I use the UploadSessionFinishUploader.uploadAndFinish upload mode, can give me some help? Thank you!
-
uploading file to dropbox unauthorized access denied
i get this error System.UnauthorizedAccessException: Access to the path '/data/data/AndroidMaster.AndroidMaster/files' is denied. public void FileUploadToDropbox() { string fileSource = Environment.GetFolderPath(Environment.SpecialFolder.Personal); using (var dbx = new DropboxClient(token")) using (var fs = new…