-
Open Dropbox API Authorization request in a new Tab
I have a web application running on my local host and I am using Dropbox Core API in the web app to upload files. However, the Dropbox authentication page opens in the same tab in the browser as my webapp. Is it possible that I force Dropbox API authorization webpage to open in a new tab? Is there a setting for this in…
-
Started getting 401/Unauthorized for request_token in last 12 hours
Hi guys, in the last 12 hours all my customers started getting a 401/Unauthorized when my WordPress plugin makes it's call to request_token ( https://api.dropbox.com/1/oauth/request_token) From the documentation it says that the 401 is returned when you have a stale access token - but I'm getting it when trying to get the…
-
What is expected behavior when specifying X-Dropbox-Perform-As-Team-Member but with token that d ...
oes not have team privilege? I'm using the REST API to create a folder using an ordinary token for a user, but also passing X-Dropbox-Perform-As-Team-Member to operate on another user's account. So this should probably fail with an error. Instead, it seems to be creating the folder in the first user's account. Is that…
-
-34018 Client has neither application-identfier nor keychain-access-groups entitlements
When attempting to initiate oAuth with our in production app, I'm receiving this error below. Have not had an issue with this until today. SecOSStatusWith error:[-34018] The operation couldn’t be completed. (OSStatus error -34018 - Remote error : The operation couldn‚Äôt be completed. (OSStatus error -34018 - client has…
-
[DB for Biz / API ] /1/team/reports/get_storage 100GB+ limit?
Here is a snipped from the Dropbox for Business API endpoint: /1/team/reports/get_storage. "member_storage_map": [ { "100GB": 0, "5GB": 0, "25GB": 0, "10GB": 0, "4GB": 0, "100+GB": 0, "2GB": 0, "50GB": 0, "3GB": 0, "1GB": 1 },...{} this suggests that once my team goes over the 100GB limit any graphs I have associated to…
-
[DB for Biz / API] /1/team/reports/get_storage are those bytes I see?
In reference to the API endpoint: /1/team/reports/get_storage [ documentation: https://www.dropbox.com/developers/business/docs#reports-get-storage ] The returned results include “total_usage”, “shared_usage” and “unshared_usage" do I assume correctly they are bytes? So “shared_usage” + “unshared_usage” = “total_usage”?…
-
Is there an ereader that syncs to Dropbpx?
Supposedly, there is an e-reader app called "Fabrik" that is designed to work with Dropbox, but I can't find any way to download it to Android devices. Anaybody heard of it? Does it still exist?
-
Android App Development - Common Folder for different user to upload their files without enteri ...
ng authentication (username pass.) I am developing an android app. Application has a module in which dropbox use as a file storage and multiple user can upload their files on dropbox common folder. what i have done: by the dropbox API files are uploading fine on dropbox. but app required authentication (username and pass)…
-
PHP Dropbox API for invite to share files or folders
Hello, I'm developing application which has functionality to invite user to share files or folder on particular email address. ex. User A send invitation of folder sharing to User B. User B will get notification in their dropbox account to accept or decline share invitation . I want to develop send file or folder share…
-
Redirect URI registration
Do we always need to register redirect uri in our console for the authentication process? For the case when many servers use my dropbox app, may I know how to deal with many redirect uri? We cannot afford adding up the IP addresses of all servers who want to authenticate.
-
Get notification when any files were uploaded
Currently, Dropbox API help us to download and upload file to dropbox. But, I need a trigger on my application, when a files were uploaded to dropbox. Can we do that?
-
Copying folders which contain images via API (from copy_ref) returns 500 errors as of September ...
1, 2015 As of Tuesday night, the API copy call returns 500 errors for paths which are folders and contain images. Removing all images solves the problem in the cases we've tested.
-
Internal server error when using delta API
We've been seeing Internal Server Errors when trying to fetch files via the delta API over the past week for some specific accounts. This has been occurring consistently for at least the past 10 days, but was working fine prior (and it still working fine for other accounts). Example: druidbox.delta…
-
Check if folder exists and collect shared folder
Hello, 1.I'm trying to check if folder exist in my dropbox by retrieving metadata from given path: (example path "/myfolder") public async Task<Metadata> GetFolderMetadata(string folderPath) { Metadata folderMetadata = await client.Files.GetMetadataAsync(folderPath); if (folderMetadata != null) return folderMetadata;…
-
How can I mock DbxClient class using Mockito when it is final?
For purpose of testing I would like to mock DbxClient class using Mockito but it is not possible. The problem is that DbxClient is final and doesn't not implement any interface. Can you please fix it?
-
file_copy is changing case when searching for local path
I'm writing a sync client (in Ruby) to copy a folder from local to Dropbox. My code is as follows: file_copy(settings['local_folder'],settings['remote_folder']) I get the following error: in `parse_response': Path '/home/user/projects/clients/' not found (DropboxError) This is true; that folder doesn't exist. It's…
-
Chunked upload with HTTP requests
Hello, I am trying to implement chunked upload utilizing HTTP requests and find myself in trouble with chunked upload. The upload itself seems to work fine, i am able to go through the flow and receive 200 response and uploaded files metadata after calling commit_chunked_upload, however the uploaded file(s) seem(s) to be…
-
CSharp SDK dbx.Files.UploadAsync doesn't work
Hi, I've installed the CSharp DropBox SDK in a Console App (in part of my CI toolchain, although created in Visual Studio 2013 it is sitting in a Xamarin solution that is built using Jenkins on Mac using .Net v4.0.30319). I call the dropbox SDK immediately after successfully copying an iPhone .IPA to a temp directory so…
-
A Python 3 fork of the Python SDK
Hi everyone, Based on this conversation ( https://twitter.com/Ewjoachim/status/600065382821552130 ) I had a few days ago, I'm forking the SDK to add the fixes for python 3 while waiting for Dropbox to release a proper version. Anyone interested can contribute using usual means. Fork can be found here :…
-
How to get access token from browser?
Hi, I'm using your new .net sdk v2 Dropbox.Api . I want to open the browser with authorize uri , then login and then get all the uri and parse it with your function called ParseTokenFragment(). It is possible? Or maybe is another solution . All I want is to avoid creating a WebBrowser control in my application and then…
-
Get access_token problem
While getting access_token for my app, error(500) occured. Please let me know the reason. I'm developing an app using dropbox cloud. Until now, there was no problem. But since this error occured, I can't go on developing. Please help me.
-
Ambiguous call
Hello Dropboxers, I'm trying to use your method to get authorize uri fromDropboxOauth2Helper class. If I make a call like DropboxOauth2Helper.GetAuthorizeUri(OAuthResponseType.Token,myAppId) I get ambiguous call . Is there a way to avoid this without creating in my app a redirect uri? Thank you
-
How to add a folder to dropbox?
Hi there Dropboxers, I'm trying to create a folder directly to my box from your server. I have the DropboxClient client and the AccessToken , but the method : client.Files.CreateFolderAsync("NewFolder"); doesn't work . Maybe the path that I'm providing is wrong ? How it should look ? Can you give me a correct example call…
-
Missing Push Notification Entitlement mail from Apple
Hello, after adding the Dropbox SDK to my project, when I upload my app to iTunes Connect I receive a mail from Apple informing me that my app is missing the push notification entitlement if I or a third-party framework is using API that refers to the push service. Since my app has no push notifications service enabled,…
-
Login and authenticate without browser
Is it possible to login to Dropbox and authenticate/allow an app to access files in dropbox without a browser? Like via ajax or curl? I am thinking if there will be no UI.
-
Generated Access Token not working for authentication (Python)
Hello, I generated an access token on my app page, but it does not seem to be working. I am using it in place of the token that is normally generated when give it access from the webpage. Here is my current code: import dropboxapp_key = 'xxxxxxxxxxxxx'app_secret = 'xxxxxxxxxxxxx'flow =…