-
Android App Dropbox API error
I have looked at similar questions but I couldn't figure out this issue. Iam trying to integrate dropbox into my app. This application allows users to encrypt/decrypt files into dropbox. I managed to get an app key and secret key from the dropbox app console. The app key is installed properly in the Manifest but I get the…
-
how to install dropbox java sdk. steps to connect java to dropbox. i got secret key. but the exa ...
mple given for java api for dropbox throws exception. public static void main(String[] args) throws IOException, DbxException { // Get your app key and secret from the Dropbox developers website. final String APP_KEY = "my key"; final String APP_SECRET = "my appsecret"; DbxAppInfo appInfo = new DbxAppInfo(APP_KEY,…
-
Getting deleted DBRecord information from Datastore sync:
I'm developing an iOS app with Datastore. How do I know records deleted from remote? I watch changes with observer (status.incoming) and call sync: and it return the changes. The deleted DBRecord will be return but the properties can't be accessed, which I use for storing a unique ID for my data, and compare them in my…
-
can't authenticate with javascript
I try to use the datastore API with javascript. This is my Code: <!DOCTYPE html><html> <head> <meta content="text/html; charset=UTF-8" http-equiv="Content-Type"> <meta charset="UTF-8"> </head> <body> <script src="https://www.dropbox.com/static/api/dropbox-datastores-1.2-latest.js" type="text/javascript"></script> <script>…
-
Electronic Signature and Dropbox
I want to use the software Signnow to utilize it for signing a name after receiving and delivering package. It means that when my staff delivers a package to customers, he/she will receive Signnow which is signed by customers. Then upload it to Dropbox. I have some questions: - How can I upload Signnow to Dropbox? And how…
-
NSURLConnection loader error
Hello, i'm developing an IOS app and i'm validating the user and the simulator doesn't have the dropbox app installed. When i click to validate the user it start the loading but gives an error com.apple.NSURLConnectionLoader error. Did anyone face this kind of problem? Please help
-
Dropbox iOS SDK: I had to manually add CoreGraphics to make it work
Hello. I'm using Xcode 6.1.1. I have installed Dropbox SDK version 1.3.13 in my project and every time I tried to compile the project I was getting these errors: 1) DBRestClient.h "Parse issue. Expected a type" 2) DBRestRequest.h "Parse issue. Unknown type name 'CGFloat'." Trouble is easily solved by importing CoreGraphics…
-
Clearing cached files.
I'm creating an iOS app using Sync API. For testing purposes, I was wondering if there was a way to clear all the previously downloaded/cached files, so when I call openFile, it will download from Dropbox instead of using cached file.
-
read a file from dropbox c#
Hello, I have the dropbox picker on my page and I can select a file and get the filelink and name. Now I would pass this info to my c#api to read the content. However, it seem that I am missing the credential Here c# snippet var webClient = new WebClient(); byte[] arr; arr = webClient.DownloadData(dropboxFileData.Link);//…
-
Webhooks in PHP
I have been playing round with the PHP SDK, but have not figured out exactly what I should be sending back for the verification request. the documentation rather ambigously says "Your app needs to respond by echoing back that challenge parameter." However the error returned states Error: error:14077458:SSL…
-
how to upload file asynchronously on dropbox by using php sdk with the help of ajax?
i know how to upload files on dropbox but it causes long page reload until file is not upload i want to upload files on dropbox without page reloading as AJAX file upload do is there any way??
-
Anybody else getting issues trying to verify a webhook callback?
Hi all, I'm trying to verify a webhook callback but I keep getting a "Error: SSL certificate problem: unable to get local issuer certificate" error.
-
Best practice for using Dropbox (Java) API
Hi everyone, After tweeting a lot @dropboxapi (thanks for the support guys) it will be more convenient to post a question on here. I am developing an open source app (https://bitbucket.org/twasyl/slideshowfx) which allows to create HTML5 slide decks. The app is a desktop app using JavaFX. I would like to allow the user of…
-
Datastore how to get past sync errors?
I've just had again this bug about "delete for title: key not present". This happened on a production device, a week before launch, whilst recording a screencast. Sync stopped syncing. This is getting freaky because how is the user going to know and what is he going to do about it? Remove the app? Clearly this is not an…
-
Syncing on Background - Best Practice
Hello, I'd like to implement simple sync functionality into my App. The goal is to read JSON data from file (On Dropbox) and update my SQLite data and vice versa. Users must be allowed to use App during sync process. I consider to use Dropbox Sync API and call syncing from (Intent)Service. I see a few problems which could…
-
Sync API pause / resume for background
I'm using SyncAPI in my AppMonster for Android and looking for a trick to pause background sync on WiFi=false and resume the sync on WiFi=true. I've been through docs and see nothing appropriate. Did I miss something? Is it on roadmap? regarding, Grigory
-
"Generated access token" button not working
Hi, Working on Development/ Team member management app where from "App Console" UI, I am unable to retrieve access_token when click on "Generated access token" button. Is there an issue while retrieving access_token by Dropbox or Am I missing anything? Thanks GS
-
Datastore API & iOS8 Extensions
Hello guys, congrats on the new forum. I noticed all older questions were missing? Shouldnt they be migrated here? So I thought about reopening this question. The question of some clearer guidance on how to play with both Datastore SDK and iOS8 extensions. Theres a certain expectation from users now on iOS8. Sharing data…
-
Using Sync API to open files when already open
I'm using the iOS Sync API to load in image files and grab there contents and display them in a scroll view. As the user scrolls it loads and unloads images. But I see that once you open a file you cannot open it again. So I am getting errors when it tries to load again. I don't really need to keep the files open, but I…
-
DBDatastoreManager updateBackgroundTask crash
I had the following crash on a device. Should I be worrying? Exception Type: 00000020Exception Codes: 0x000000008badf00dHighlighted Thread: 5Application Specific Information:<BKNewProcess: 0x176971e0; com.bronze.ubibase2; pid: 9735; hostpid: -1> has active assertions beyond permitted time: {( <BKProcessAssertion:…
-
Datastore sync effects on temperature/energy
During testing this morning on an iPhone, I notice the device's temperature was keeping unusually cool. The iPhone was in silent mode. When I performed this kind of testing in the past, network was always on and the device's temperature rapidly became noticeably warm/hot and the battery was draining rapidly. No such…
-
http-link to private files
Hi, i'm using the Dropbox Core Api for Android. I want to generate a http-link to private files, so i can place it in text documents. Is there a way to do that? like... the link opens the browser, which handles authentication...
-
Hardcode authentication/api to a single Dropbox account?
Hello - new to the Dropbox API and wondering if it's possible to hardcode the Dropbox account that an app using the API would authenticate/connect to? In other words - when a user takes some action in my app - I want to save the file output of that action to MY Dropbox account, not ask them to authenticate into their…