-
Daten meiner App per API oder Dropbox-Ordner auf meinem Handy syncen?
Liebe Community, erst einmal ein freundliche HALLO. Mich würde interessieren auf welchem Weg ich am besten die Daten einer von mir entwickelten App (Android aber Windows und iOS sollen folgen) mit Dropbox synchronisieren kann. Bei den Dateien handelt es sich um einen Ordner der ein paar JSON-Files und weitere Ordner für…
-
Android API - listfolder returns nothing
I have to admit here that I'm both new to Android and new to the DropBox API (but not new to development) so maybe I'm doing something wrong but I cannot get listFolder to return any files no matter what I try. My code is below and the loop that gets the files is taken from the example API code. There is no issue…
-
Problem calling API from PHP
I make the authentication step and got the accesstoken as well. now I want to start an API call so I wrote the below code: # Include the Dropbox SDK libraries require_once "dropbox-sdk/Dropbox/autoload.php"; use \Dropbox as dbx; $accessToken="XXXXXXXXXXXXXXXXXXXXXXX"; echo "Step 1 <br>"; $dbxClient = new…
-
RETRY EXCEPTION in API V2
Initially, i have used dropbox core api v1, now i'm using api v2. api v2 is working nicely. but today i'm facing the issue in file download. Exception: com.dropbox.core.RetryException root cause javax.servlet.ServletException: com.dropbox.core.RetryException:…
-
Error (4xx) We can't find the page you're looking for
Hello ! I am facing an issue while using DropBoxAPIs. I am trying to download a file from my drop box using AT commands through GSM module.However, it is showing error 404 page not found. Below Call is successfully executed through Postan Utility then to use with AT commands it is converted to HTTP curl -X POST…
-
Host Database
Hello, i want to host database on dropbox.still i not found any good answer. can you please help me out with this Thanks kinjal.
-
DropBoxLogin
Hello everyone! Well, I'm beginner at programming. So, can anyone tell what " CS0619 'DropboxLogin.DropboxLogin(string, string, bool, bool)" is an old version: 'Please use an overloads with a return url.' "it exactly means?
-
create_shared_link_with_settings works once, then returns nothing
Hey all - would love some help. If anyone is working with the Kunnu PHP sdk: The following: $response = $dropbox->postToAPI("/sharing/create_shared_link_with_settings", ["path" => "/path/to/file.txt"]); $data = $response->getDecodedBody(); var_dump($data); works once, then stops. I'm assuming that has to do with the…
-
Is it possible to set client_modified on an existing file in v2 API?
Being able to set client_modified on an existing file would be really helpful for rclone. I looked through the API methods and couldn't see a way but I'm hoping I missed it! Thanks Nick
-
Android V2 API. Successful fileupload but no file in Dropbox Directory
I'm using the example source code from github for an android application. For the file upload i'm using the provided UploadFileTaks class. I get no exception and the "onUploadComlete" Callback is called after 1-2 seconds, but i dont find the file in my dropbox folder. What i'm missing / doing wrong? Kind regards tscheims
-
Lire un fichier mp3 pour balise HTML <audio>
Bonjour, Je voudrais savoir comment trouver l'URL d'un fichier mp3 de ma dropbox, pour la passer à la propritété .src d'une balise HTML audio. <audio id="player" src="https://...."></audio> let dbx = new Dropbox.Dropbox({accessToken:'EVI0.... dbx.méthode.... Quelle méthode va me retourner l'URL, de préference sécurisée,…
-
Where should I locate the 'startOAuth2Authentication'?
Hi, Question 1: I'm totally new to Android Studio and I have to add a DropBox (SDK V2) files loading method to an existing project. As I understood I have to add the following line to my code: Auth.startOAuth2Authentication(UserActivity.this, getString(R.string.app_key)); as shows here in line 36:…
-
Cambiar propietario de aplicación API
Buenos días, actualmente tengo una plataforma web desarrollada en Python con Storage en DropBox (Free Account)... Quisiera saber cómo traslado esa aplicación o carpeta a otro usuario con cuenta corporativa sin que los archivos sufran algún cambio en sus links. Esto es posible? Agradezco su pronta respuesta. Gracias.
-
implement dropbox on my cordova app
Hello, I have a cordova based app and I would like to provde the user with a buttom that when click will open the dropbox picker and allow the user to select a file. This file will be process by my app and will display some info to the user How can I implement dropbox picker and file selection in my mobile cordova app…
-
Downloading shared file gives me access denied error in Dropbox API
When I try to download a shared file, I get an access denied error. The shared file is valid as you can see: https://www.dropbox.com/s/kudtbi18mhweyua/courser_course_1460192882561.json?dl=0 But when I try to download it with a CORS Javascript call on the HTTP API endpoint…
-
Extended Latin and 400 Bad Request
Hello, I try to create a new member with name that contains chars of extended Latin alphabet (Ñ, Í, Õ etc.). I use powershell Invoke-RestMethod command and generate a body on the fly. I receive "The remote server returned an error: (400) Bad Request" response. Do I have to somehow prepare my request before API calling or…
-
File search method returns no match
Hi, i am using the dropbox api long time and didn't have any problems, expect of this one. In one of my tests i uploaded some files through the api and one of them i can't find it afterwards through the search method. The list_revisions method for the same path and filename returns two entries, but the search nothing. Why…
-
Commenting on files in API 2.0
I would like to know if there's a way to comment on files with the API 2.0 . I can't find anything on this in the API docs. Am I not looking in the right place, or is commenting only a feature available via the web app? If it's the latter, and API doesn't support commenting right now, is it something that's in works and…
-
App Folders and Business access
I am a member in a Business account with no special permissions. If I create an App with App Folder access, who else in the business gets access to the app folder while the app is "in development"? The web interface suggests the access is "Only you", but I'd like to make it available to the whole organization. Is that…
-
Unable to get Server Modified time for files
Greetings , I am using swift version of dropbox api . I call files/list_folder to get details about the files i saved. But api returns a Files.Metadata object which dosenot have the server_modified details. Is there a way to get this details ?
-
Thumbnails
is there a way to GET tumbnails in batch now? getting the thumbnails one by one is really to slow to be usefull.
-
How to get Progress Status while uploading or downloading a file ( in VB.Net ) ?
I am using DropboxClient.Files.UploadAsync method for uploading file, and it works perfectly, but it only limits up to 150MB per file, is there a way also to upload larger files? And I would like also to ask for proper code on how to get upload or download status and submit the value to a label and a progress bar, I have…
-
Sync files behavior on android
Hello. I would like to implement a sync files behavior for my android application using the Dropbox API v2. From the Java documentation and your samples on github I find it hard to understand what steps are needed in order to achieve such a behavior. You have only samples for uploading and downloading a file, but what…
-
/set_access_inheritance
Hi all Did someone test that API ? set_access_inheritance To foul to test now, but.. is it the way that we asked, for disabling inheritance of permissions for subfolders ?? Any feedback ?
-
500 error when authorizing app
Hello. I had initially authorized my app to upload files to its own special folder in my account, and then I disauthorized it for testing purposes. After that, I was never able to authorize it again. Whenever I go to the corresponding "https://www.dropbox.com/oauth2/authorize" URL to authorize it and click on "Allow", I…
-
Need OAuth2 authorise form without Javascript.
Is it possible to get an https://www.dropbox.com/oauth2/authorize signin page that doesn't include any JS? I'm trying to authorise an ancient Windows CE 6 ( circa 2008 ) Handheld device, and the webbrowser is too old to handle it. It displays relatively ok, I just can't click the buttons. :( A simple html form would be…
-
Downloaded .sqlite "file is encrypted or is not a database"
Hello, I try to download a .sqlite File from my Dropbox. So far this works and I save it to the documents directory. I'm also able to establish a connection to the database but when I try to execute a query I get the error message: "file is encrypted or is not a database" this is the same database I used before as a local…
-
no response when trying to list files
Hello, I'm trying to take first steps with the dropbox linkage in my iOS App. Here I have following problem: I'm opening a ViewController (not the first one) and want to list all files which are in the root folder in my Dropbox. But when I call " client.files.listFolder(path: "").response { response, error in ..." it just…
-
Permanently_Delete and List_Folder
Hi All I'm afraid i don't understand something here. Let's say i want to list all DELETED FOLDERS (or Files) form a path. I don't really now what's the best way to filter it, but i am using /list_folder with return_deleted at true. I am getting ALL Folders, deleted and Non deleted. Expected behavior. I am then keeping only…
-
Dropbox android API.Want to show my photos to users of my android application.
I want to show photos stored on my drop box to all the users of my android app,I know that I have to use the acess token,app key and app secret for that but there is very little documentation about dropbox api v2 as v1 is deprecated.I am not able to get the source code for this,kindly help and provide necessary details for…