-
When using upload/uploadsession I get a sessionDeinitialized from alamofire in Swift
When I try to send a test file using either upload or uploadSession I get a sessionDeinitialized error. I edit the code to generate a file that is larger or smaller than the chunksize to test both of the conditions. This is all the code I have for dropbox. the testDropbox function is referenced in the ContentView where I…
-
Get all shared links for a file
I have a .net app that needs to get all of the shared links for a particular file. The only way I can see to do this is to: * Get a DropboxTeamClient with "team_info.read", "team_data.member", "groups.read" scopes * Get the proper group id through TeamTeamRoutes.GroupsListAsync * Get all of the members of the…
-
Can't create DBX app
When I try to make an app, an error shows on the top of the page saying "internal server error". Thought it would get fixed, but it's been 3 days now and it still happens. Same thing occurs on all browsers and platforms.
-
oauth fails in vs2022 in debug mode
oauth fails in Razor project when started in debug mode. When started without debugging everything is ok and I get my tokens. When the dropbox page is loaded the debug output window shows all kinds off js code and html, takes a long time and then stops working. this is the url I'm sending:…
-
cannot get list of files .NET
I think my code is simple: string token = "sl.<REDACTED>"; var dbx = new DropboxClient(token); var res = await dbx.Files.ListFolderAsync(path: ""); foreach (var entry in res.Entries) { Console.WriteLine(entry.Name); } if have no entries (Count=0) here. I have 4 folders and 1 file in in my dropbox folder.
-
Trouble enumerating directories in a team space with SwiftyDropbox on macOS
I know this is a newbie issue but I cannot seem to find the right track to get over this learning curve... I can successfully authenticate on macOS to this point: let client = DropboxClientsManager.authorizedTeamClient Going off examples it seems to begin an enumeration I would then want to do something like this:…
-
API File Search
I have written this code out in many different ways. I FINALLY got it to work within the limit rates, but now my search is not returning matches. I am just trying to find ANY image filename in the entire account that includes a sku from the database. The code runs fine, just does not find any matches that I know exists in…
-
Changing Email Yields Interactions
Recently, I changed my personal account's email from an old company email to the new company email (we were acquired so we have the same team). That account has team access as well as Shared Files between team members. Since the email change, the account is now marked as an unverified email in the API GetTeamMembers…
-
Issues with Embedder
We have started having issues with the Embedder API tonight. Users are unable to scroll past the first page of embedded PDF documents. We've tried in multiple browsers and are seeing the same behavior. Nothing has changed with the code on our end. Is it possible this is an API issue? When looking in the browser console, I…
-
error not showing at embed
Hi, I have an error displaying the embedded part, although I have followed the instructions correctly, but when I show the 1MB pdf file link, it can be displayed, but the pdf link is over 9mb but it doesn't show up. Hope to get help, thank you. It used to work fine before, but it's only been there for a few days
-
Update Shared Folder Group Access Type
Is there a way to update a group's access from editor to viewer on a shared folder? I've been able to use the UpdateFolderMemberAsync for users and invitees. Not sure I can use that endpoint with the MemberSelector parameter.
-
What path argument should I pass to .NET CreateSharedLinkWithSettingsAsync()
Hi In our Website, written with ASP.NET and C#, we want to use .NET API to get shared link for a file. I found the method for this purpose named: CreateSharedLinkWithSettingsAsync() but all my tries in passing path argument, result in these errors: System.ArgumentOutOfRangeException: Value should match pattern…
-
Not sure how to interpret /users/get_space_usage output for team account
Hello, I get the following output from get_space_usage for a team account: allocation = { ".tag" = team; allocated = 9895604649984; used = 7346077264133; "user_within_team_space_allocated" = 0; "user_within_team_space_limit_type" = { ".tag" = off; }; "user_within_team_space_used_cached" = 379540969510; }; used =…
-
reading parquet file using python sdk
Hi, I am trying to read a parquet file using pandas and vaex. I can sucessfully read a .csv but I get the following error message when I try to download the parquet file with dbx.files_download : dropbox.exceptions.ApiError: ApiError('4ce7ef4f93544a4fa18c29478e1869a8', DownloadError('path', LookupError('not_file', None)))…
-
Can't operate on team member's files in R (rshiny)
Error in call to API function "files/get_temporary_link": This API function operates on a single Dropbox account, but the OAuth 2 access token you provided is for an entire Dropbox Business team. Since your API app key has team member file access permissions, you can operate on a team member's Dropbox by providing the…
-
Remove invitees from folders that don't have a Dropbox set up
If a folder has been shared with a member that doesn't have a Dropbox set up, is there a way to programmatically remove them? I'm currently get members of a shared folder as follows: await dbxClient.Sharing.ListFolderMembersAsync(sharedFolderId, null, 1000); I then go through each member and either change their permissions…
-
File got corrupted while uploading in chunks to dropbox using API calls.
Hi Team, Using Apex code, I tried to upload a large (>5MB) file in chunks, But the file is getting corrupted always. Please help me. Below is the code. public class relatedFile { public String Title; public string filepath; public Blob VersionData; } @AuraEnabled(cacheable=false) public static string…
-
app dropbox
I would like to understand why everytime i use generate token i have to keep generating it when i log in. I'm not sure if my app code or refresh token is locked in because when i called for my api to automate a process it didn't work im using ducky script to automate a process and send my files to drop box account but it…
-
refresh token
Greetings everyone just gonna copy and paste this here the letters in blue is where im having issues the output i will put in red can someone please help : **Configure your Dropbox application** - Create a Dropbox account. - [Create a Dropbox "App"](https://www.dropbox.com/developers/apps/create) with a "Scoped access" API…
-
com.dropbox.core.v2.files.ListFolderBuilder cannot be resolved to a type
Setting up an integration with TalendStudio 7.3, I was able to connect via access token have no issue using the following components -tDropboxConnection -tDropboxGet -tDropboxPut But when I attempt to use tDropboxList I receive "com.dropbox.core.v2.files.ListFolderBuilder cannot be resolved to a type" error. I downloaded…
-
Correct way to use "add_file_member" endpoint if I need to share a file with a new email
Hello, I am looking for a solution to my problem. I am still in a testing stage, so I am open to different solution. I need to share a file with only users who subscribe to a form. They subscribe on my website with their email and I add the email to the file requested. To do that I thought the "add_file_member" endpoint…
-
can our website`s users upload without create an account
Hi In our ASP.NET website ,we want to give to our users, the ability to upload to Dropbox, instead of our website (because of lack of space). I read API`s documentation and example of JavaScript`s SDK and found out all user should have to sign in to their own Dropbox`s account ,No matter the file is uploading to our…
-
Python SDK: Can one identify email address for a specific file upload?
I have an app which is restricted to a single folder which polls for received uploads, downloads the file, processes it and then uploads the result. At this point I need to inform the original uploader and share the new file with them. Is there a way to do this short of creating a custom folder per uploader?
-
What function in .NET SDK is for /oauth2/token
Hi In our Website, written with ASP.NET and C#, we want to use .NET API in offline access manner. So I think we need to get access token by using refresh token. I read the documentation and find out we had to call /oauth2/token for that. I use Dropbox`s .NET SDK, but it`s documentation is missing. My question is: what…
-
Dropbox Embedder stopped working, even the example on Dropxbox.com
The folder view of the Dropbox embedder stopped working today on my website. Just says "Something went wrong". I went to Embedder Documentation - Developers - Dropbox - and the same is happening there also (bottom of page, before "Removing the Embedder"). Tried Edge and Chrome based browsers. Same issue also on my phone.
-
Dropbox Embedder API seems to be broken
If you look at the Dropbox embedder API page here (screenshot attached): https://www.dropbox.com/developers/embedder Scroll about 70% down the page, below the JavaScript code you should see a shared folder, instead you see a "Something went wrong" error I am seeing this on my page where I am trying to embed a folder, and I…
-
"The response ended prematurely" after one hour of a file download
I'm trying to download a large (80Gb) file from the Dropbox servers. After *exactly* one hour, I get an exception indicating that the Dropbox servers have dropped the connection (System.IO.IOException: The response ended prematurely. in .NET) I have tried using both the .NET HttpClient (for a shared link from…
-
Listing shared files
I'm looking for a way to list individual files that a user is sharing with specific users (not shared links). I can list shared folders with the /sharing/list_folders route, but there doesn't seem to be a corresponding /sharing/list_files route. Ultimately, I'd like to be able to get the shared files for a particular user…
-
Chooser dropins.js Uncaught TypeError: JSON.parse is not a function
I have a feeling dropins.js conflicts with mootools because I'm getting a Javascript error when trying to use Chooser. The button is inserted using document.getElementById("DBContainer").appendChild(button); After I click the button the items are loaded, I can select them but clicking cancel or choose does nothing. If I…
-
Re-linking using Obj-C SDK fails with network error
I noticed this on my app, but it is also reliably reproducible using the DBRoulette sample app. Using SDK 6.3, iOS 15.4.1 and an iPhone Pro 12. If you link to a Dropbox account, then unlink (this step may not actually be required) and then shortly afterward attempt to link to the same Dropbox account, the link fails with a…