-
Can't get shared folder id of folders i create inside a shared folder
I want to share a folder inside a team space to a specific people but i can't find the shared id of that created folder The response when created the folder with the https://api.dropboxapi.com/2/files/create_folder_v2 endpoint : { "metadata": { "name": "TEST3", "path_lower": "/******/XXXX/test3",…
-
Download google drive docs (.gdoc) Via API
How Can I download google drive files from dropbox API? I know we we can't directly download google drive docs form dropbox API because for drive docs "is_downloadable" is false. I want to know if we can still download doc (making is_downloadable = true or any other way). Please help me on this.
-
Unable to Retrieve a new short-lived access token through Javascript
Hello, I followed the approach described in below post to get refresh token https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Get-refresh-token-from-access-token/td-p/596739 Through Javascript I am trying to get new short lived access token (step 7 in above post) using below code, but I am getting error as given…
-
Re: xcodebuild error in ObjectiveDropboxOfficial iOS build
Just upgraded to Pods 7.2, using Xcode 14.2 and get the warning on development and distribution builds. Previously I could use distribution on a device. None of the solutions I found fix this.
-
Dropbox Java SDK List Shared Links of a Team Folder in Business Account
I am trying to access all shared links in dropbox business account (team folder) using Java SDK. I am able to get shared Link Metadatas for files inside personal space of a particular member of the team - List<SharedLinkMetadata> sharedLinkMetadataList = client.asMember(memberId).sharing().listSharedLinks().getLinks();…
-
Why Auth.getDbxCredential method returns null after PKCE authentication (Dropbox Android JDK) ?
Hi, I'm trying to use the new authentication flow with short-live tokens and refresh tokens on an Android App with Dropbox JDK. I'm using the Auth.startOAuth2PKCE() method which works correctly, but when I tried to access the credentials in the onResume method, DbxCredential credential = Auth.getDbxCredential();…
-
Dropbox Chooser - 403 Error Returned
We recently incorporated the Dropbox Chooser widget into our application so that users could select files from their Dropbox account and upload them directly to our server. Note that as part of our configuration, we set up the link type to be direct, so we fetch the file using the link returned from Dropbox. However, we…
-
C# ProcessCodeFlowAsync() invalid_grant error
Hello everyone, I'm a year young to C# and brand new to the concept of API's. Been having sometime struggling with the OAuth process using the OAuth2Helper class. While I already have the AppKey and AppSecret from App Console, everytime I use the authorization code from GetAuthorizeURI (no redirectURI, I just copy/paste…
-
How to modify the App name
I found that when Status is a Development, you can modify the app name. At that time, when Status was Production, the setting item of the App name was not a editor box, but it was not modified. If you can modify, please inform the modified detailed way.
-
save_url throws error "request body: could not decode input as JSON"
Hi I am trying to upload files (pictures with .jpg extension) to my dropbox account (to a specific app folder). I am using Airtable scripting (Javascript) extension to upload files from Airtable (which has these pictures as attachments) As these attachments are in Airtable (available at individual URLs), I am using below…
-
Upload to Dropbox with Curl and refresh token
Hi, I'm trying to upload files from my website to dropbox and it was working, but i received an error message saying the Access Token Expired. I research a little bit, and read that now dropbox uses "refresh token". I'm trying to find an example or tutorial in order to change the code im using to make it work with refresh…
-
JavaScript - I can't get shared_link_already_exists.metadata
Hi, I want to create a shared link or get a shared link if it already exists with JavaScript. If the shared link already exists, returned error has only '.tag'. error: { error_summary: 'shared_link_already_exists/..', error: { '.tag': 'shared_link_already_exists' }} So I have no choice to use sharingListSharedLinks await…
-
How do we get audio file duration from the API?
We are trying to get the audio duration of file via API. Can anyone point us to the right direction?
-
URL issue X Pabbly Connect
Hey team, Some of our mutual users were able to receive data on their Pabbly Connect webhook URLs till the 21st of this month but, after that, it seems you have made changes to your webhook system and asked webhook handlers to respond with an HTTP code of 200 and the text: "Hello API Event Received" in the response body…
-
file size uploaded zero via api
Hi, I am using wordpress with dropbox and everything is working and my video file is uploaded but it says size = 0 and no such files or directory. Please help. Thanks
-
How do I upload file using Python
I've checked here and over at StackOverflow but couldn't find a solution. Nothing works. It says that I need refresh token (I have no clue where to get it) and an app key. import pathlibimport dropboxdropbox_access_token="my_token"app_key="my_app_key"folder = pathlib.Path(".")filename = "img.jpg"filepath = folder /…
-
API Token Expired
Hi, I am creating an App to automatically backup some files on my servers to Dropbox. Unfortuntely I can't see the button shown in this docu https://developers.dropbox.com/de-de/oauth-guide to set the expiration, so I can only get sl tokens that expire after a day. How can I get long lived tokens for my app? Regards,…
-
Step by step to embed my file requests link on my website
Hello all, hoping someone can help fill in the gaps. What are the steps to embed my file requests link on my website? I have looked at https://www.dropbox.com/developers/embedder but it doesn't show me how to just show the request and not the folder. I've managed to get it to work via an form with a file upload using Make,…
-
Re: Chooser for directory
Hi Team, As per the doc the default value for `folderselect` is false however still the user is able to select the folder. I have also tried passing `folderselect : false` but that also didnt work.
-
How to obtain shared folder metadata after calling endpoint /2/sharing/share_folder
Hi everybody, yesterday our Team Dropbox has been converted to shared team space. Now our API (REST calls via HTTP) we've developed during the last months is completely broken since we cannot create team folders anymore. Documentation says we've to use shared folders instead. So question is: After calling above endpoint we…
-
get_current_account and get_space_usage api returns inconsistent tag
get_current_account api returns tag as "user", and get_space_usage api returns "team", which is inconsistent get_current_account { ...... "root_info": { ".tag": "user", "root_namespace_id": "11078782000", "home_namespace_id": "11078782000" } } get_space_usage { "used": 2702286001658, "allocation": { ".tag": "team",…
-
Zip multiple folders with Dropbox API
The Dropbox API offers the possibility to zip a single folder (/download_zip). Nice! But in the official documentation, there's no endpoint or parameter to zip multiple folders. Is zipping of multiple folders anyhow possible with the API? Any ideas or solutions are welcome!
-
Search v2 APInot working in .net sdk
Hello is it possible to do content search in file using .net SDK or postman calls i have tried this and it is only returning search from file name var dropBoxClient = new DropboxClient("token"); var result = dropBoxClient.Files.SearchV2Async(searchTerm).Result; With this code i am getting wrong output i.e. getting wrong…
-
Generate Access Token Automatically using Code
HI Friends i am using Dropbox API in webapi which needs access token which have the validity only few hours so that i have to on console and generate again the token. So is this possible to use same token again or Generate new token using api without going to browser?
-
Dropbox Video information using only Dropbox Video public URL
Hi Dropbox Community, I'm working on a React base front-end application. In which I've to send the Dropbox Video Details ( dropbox video id, created at etc... ) to the back-end just only using the Dropbox Video URL. We'are using only public URL's. But I'm unable to handle it from front-end side. As I was going to use…
-
My dropbox files get broken after a while
My Dropbox files start to break after a while. I'm making a Laravel Application with the Spattie Dropbox Client to connect my Dropbox account to the system. So, when a user uploads an image from the web application, the shared link stores in the database; the issue comes when, after x days, my shared link is getting…
-
Rename App Name
There doesn't appear to be a way to rename an existing app via the app concole / branding tab.
-
Redirect URI documentation incomplete for code flow
Dropbox OAuth Guide - Dropbox The process of using the redirect URI is not fully explained. There is no mention of which method will be used to call the URI (POST, GET, etc.) and there is no explanation of which parameters should be expected upon successful completion of the code flow. I was expecting to see an example of…
-
Get temporary links of multiple files at once
Hi, Actually I'm trying to display the list of all images of a user that are available in dropbox. For this i'm now doing /files/list_folder to get all the files in the root and then /files/get_temporary_link to get the links of each files. But the process is becoming so slow that i have to call…
-
get_temporary_link returns empty json string some times
Using php, I call list_folder to get a list of about 2000 files of about 800K each to download. I then go into a loop calling get_temporary_link, retrieving the file contents and writing the file to local disk. Out of 2000 requestes, about 3-5 times get_temporary_link will not return any json. (empty string) Retrying the…