-
Folder Download
Hello, is it possible to download an entire dropboxfolder throug API V2 as a zip folder like the dropbox.com homepage would do it? cheers
-
API v2 Folder Download
Hello Are API v2 going to add an option so be able to download folder? thanks
-
Expiration settings of Temporary Link
Hi all, is there a way to set the expiration duration for a Temporary Link in the API? The generated one expires within 4 hours by default. I’m thinking of setting it to 24 hours or so. I’ve seen that it’s possible with the sharing_create_shared_link_with_settings, but that’s not the kind of link I need/want to use, and…
-
Upload Image Base64 Encoded with Dropbox API
Hi, I'm trying to use dropbox API for uploads images, actually I have the Base64 encoded string of image file and I wanna use the API for upload. I try this but it doesn't work. curl -X POST https://content.dropboxapi.com/2/files/upload \ --header "Authorization: Bearer <TOKEN>" \ --header "Dropbox-API-Arg: {\"path\":…
-
Retrieve Shared URL with JavaScript SDK without Authentication
Hi, I am attempting to use the JavaScript SDK to retrieve a publicly shared URL. This method succeeds if I first authenticate the user. dbx.sharingGetSharedLinkFile({'url': sharedUrl}).then(...); I would like to allow users of my application who do not have a Dropbox account to be able to access files shared by another…
-
What is shared_folder_id and parent_ shared_folder_id ?
I am confused with the following: * shared_folder_id * parent_shared_folder_id user A shares folder F with user B who mounts the folder as G. What would be shared_folder_id and parent_shared_folder_id for G ?
-
Api v2 for filesGetThumbnail gives t.buffer not a function error
Hi, when i try to get thumbnail for any file inside my folder i have the same error for different types os files (svg, png, ...) import { Dropbox } from 'dropbox'; let dbx = new Dropbox({ accessToken: 'my-key' }); dbx.filesListFolder({path: '/vector'}) .then(function(response) { console.log("file :"…
-
utilisation de l'API filesGetThumbnail
Bonjour, Je suis au début de mes essais du SDK javascript de Dropbox et j'ai le problème suivant: Le contexte : <head> <title>testDropbox</title> <script src="https://unpkg.com/dropbox/dist/Dropbox-sdk.min.js"> </script> </head> <body> <h1>Welcome to testDropbox</h1> </body> var Dropbox = require('dropbox').Dropbox; let…
-
Api v2 for filesGetThumbnail gives t.buffer not a function error
This is a question that has already been answered, but none of the solutions have worked for me. I am trying to upload an image using Python and view it using JavaScript. I'm using the Vue.js framework. The upload part happens splendidly with Python. It's the JavaScript part that is giving me some serious headache. The…
-
Distinguish shared link and preview links
Am I correct to assume the following: a shared link will alawys have /s/ in the URL The original preview link is of the from : www.dropbox.com/home/path/to/file?preview=filename.pdf What I am trying to do I have a list of URLs in my DB, and I need to use the API to generate a preview and embed it in a webpage for the…
-
File Picker From DropBox even if DropBox App is Not Available
Please let me know how can i implement File Picker in Android even if Drop Box App is not Available in phone
-
Download a file with the API
Hi, I'm a developer using the dropbox API to make a web integration. I need to download a file using the api, but the options that I've found are not completely satisfactory for me: I'm currently using the method /get_temporary_link to get a link to download the file. But the "downloaded" file has some issues: - The file…
-
What is a folder_id andshared_folder_id and parent_shared_folder_id ?
What is a folder_id andshared_folder_id and parent_shared_folder_id ? If I move a file from my account to another users account will the folder_id get changed ?
-
Listing doesn't get deeper from the root folder
I'm trying to get a list of all files in the dropbox by using listFolder and listFolderContinue. However I only get the list of files/folders in the root, but it doesn't go deeper. This is my code: DbxRequestConfig config = new DbxRequestConfig("dropbox/java-tutorial", "en_US"); DbxClientV2 client = new DbxClientV2(config,…
-
let people upload into our folder using API
Hi We have a web app in which we want ceople to upload their files into a folder in OUR PRO ACCOUNT (an other account) using API: for example, we will create a folder ALL_FILES under our pro account, then we need an API to let people upload files into this folder via our web app please, we need your help to do that task…
-
Could not resolve host: content.dropboxapi.com when to upload file at shutdown
I want to upload file into my dropbox when my pc is shutdowning.sudo vim /etc/systemd/system/upload.service [Unit] Description=upload files into dropbox Before=network.target shutdown.target reboot.target Requires=network-online.target [Service] ExecStop=/bin/true ExecStart=/bin/bash /home/upload.sh StandardOutput=journal…
-
API V2 Upload Limit
Hi, I am trying to upload the file to Dropbox using API v2 in PHP using curl. I am getting a 413 error response from the Dropbox server (Request entity too large). So what is the limit to upload the file to Dropbox and Please let me know there is any limit on the paid account?
-
File size limit
Hi, I am trying to upload the file to Dropbox using API v2 in PHP using curl. I am getting a 413 error response from the Dropbox server (Request entity too large). So what is the limit to upload the file to Dropbox and Please let me know there is any limit on the paid account?
-
API limits on Personal Plans?
Are there any API limits per month on Personal Dropbox plans? Saw this post asking about rate limits, but wondering about API limits similar to the Business Plans.
-
HTTP/1.1 301 Moved Permanantly error
-- code written in lua local http = require("socket.http") local ltn12 = require("ltn12") local json = require("json") local url = "https://api.dropboxapi.com" local data = {} local request = {http.request{ url=url, path = "/2/files/list_folder", method="POST", sink = ltn12.sink.table(data), headers = { ["Content-Type"] =…
-
http api to restore a deleted folder
Hi. I am trying to restore a deleted folder with HTTP APIs. It seems Dropbox WebUI provides folder restoration, preserves the IDs including all sub items. But i can't find any in v1 or v2 HTTP API Documnet. Where can i find folder restoration APIs? I need help or a link. Thanks
-
Mute option not working for API v2 write REST call
I know there has been at least one other discussion on this, but it got wrapped up in the whole "APP' directory should be turned off by default discussion. I want to report a clearer(?) issue. I recently upgraded to API v2 as required. I make a write call with 'Dropbox-API-Arg': JSON.stringify({"path": path, "mode":…
-
How to retrieve a list of links of a user folder
Hi, hoping to get some help here regarding my issue. In my (php) application I want my users to upload images inside their folder (myapp - their app folder). I can upload files, I can show a list of files...that's working great. But... I want to retrieve (for the user) a list of links inside a folder (so his own files).…
-
Auth redirect_uri with variable in url
Hi I'm testing everything at the moment in a standard (stand alone) php file. Once everything is working I want to integrate everything in my php application. The issue (I think) is that my application uses a (session) token in the url. So how can I create a return uri and use that session variable. If the session variable…
-
deleted app recovery
hello, can i recover my deleted app named "myconftesting4" which was deleted recently?
-
How to dealing with shared folder event by /ist_folder/continue API
When trying to dealing with shared folder event generated by /ist_folder/continue API, we noticed the folder changes reported by /ist_folder/continue API is same in the following two case and it confues us. case1: sync some files under a folder and delete the folder then create a shared folder with the same name (ex:…
-
In Android API v2, how Upload files offline?
I'm workin with Android but i have any problem. With the Android Dropbox Sync API v1 there was a method which would sync the file at a later time if the internet connection was offline. Is there a similar function in the new Dropbox API v2? Thanks your time.
-
Server Side API
Hi, Does DropBox supports a server side api? for example from the client send a message and from the server side append it to an existing file?
-
Oauth and Curl
Hello all, I'm developing a backup application which should have a degree of autonomy - configure once and run in the background kind of thing. This is all in C++ with libcurl to do the network side of things. I've been prototyping curl requests using the curl itself (following the examples in…
-
php Authentication issues
Hi, Hoping to get a helping hand here. So this is the story. I try to authenticate from localhost (MAMP) 1. trouble when the user allows access and I look in the connected apps of that user I see "No access - App folder deleted (Pending)" on access type. Wondering if this has something to do with the next issue 2. when…