Questions tagged [dropbox]

Dropbox is a free cloud storage service that lets you bring your photos, docs, and videos anywhere and share them easily. It uses a web interface and cross-platform file syncing application to manage files in the cloud. It also features an API.

Dropbox is a free cloud storage service that lets you bring your photos, docs, and videos anywhere and share them easily. The paid services add more features and space. It uses a web interface and cross-platform file syncing application to manage files in the cloud. It also features an API for both the files and login services.

3543 questions
1
vote
1 answer

How to download file from dropbox using Dropbox Sync API iOS SDK

I am using Dropbox Sync API sdk it display all folder and file but we can not download file i am using this code: DBFilesystem *filesystem; DBFile *file = [_filesystem openFile:info.path error:nil]; NSData *imagedata=[file readData:nil]; …
kirti Chavda
  • 3,029
  • 2
  • 17
  • 29
1
vote
3 answers

Possible to run Dropbox within Nitrous.IO?

Nitrous.IO looks incredible. I'd love to use it with my students. However, we need the ability to have files locally accessible too. If we could run Dropbox on each Nitrous.IO box, that would be ideal. Is this possible?
at.
  • 50,922
  • 104
  • 292
  • 461
1
vote
1 answer

Relative paths when hosting static single page website on Dropbox

To have an direct access of a file on Dropbox, you have to replace the shared link's subdomain www with dl. The main domain gets redirected from dropbox to dropboxusercontent. I wonder how (if possible) to host a static single page website with…
Fellow Stranger
  • 32,129
  • 35
  • 168
  • 232
1
vote
1 answer

DownloadFile method in Sharpbox and 403 error

I'm trying to make an application using Sharpbox for download one file of my dropbox directory. I try to download the file with the downloadFile() method, the code is: CloudStorage dropBoxStorage = new CloudStorage(); …
1
vote
1 answer

When Web Page loads then pause and mute screen appears and after some time actual video screen appears. How to solve this?

1) This First Screen appears when Web Page loads. (Screen 1) 2) After few seconds of above Screen this Screen Comes. (Screen 2) Why this Screen 1 comes? How should I remove that bug? I just want that after Web page load Screen 2 (Video) should…
eegloo
  • 1,479
  • 3
  • 17
  • 29
1
vote
1 answer

Dropbox authenticate after restart Application

i dont know how to use my saved authentication token after restart of my application, so i don´t need to authenticate again. /*DROPBOX ==========================*/ private String APP_KEY= "key"; private String APP_SECRET= "secret"; AppKeyPair…
user2784676
  • 105
  • 1
  • 12
1
vote
1 answer

how can i upload a photo when it is taken from the default camera app in flex mobile?

I know how to take a picture and upload it with flex mobile, but i have seen that the Dropbox app automatically uploads the photo that you take using the default camera app. can this be made in flex mobile or how does Dropbox do it?
1
vote
0 answers

DropBox Datastore Xamarin component for Android

I am starting out with Xamarin writing Android apps. I found DropBox'x DataStore component for Xamarin very interesting and I believe it would suite my needs if it only worked with Android Xamarin. Currently the component (Dropbox.IOS.dll) targets…
Ron Miller
  • 21
  • 3
1
vote
3 answers

Upload file to dropbox

I'm trying to upload a file to dropbox. I've followed the tutorial from the official site but, now my app crashes and I'm getting this in logCat: 09-11 22:19:13.519: E/dalvikvm(2856): Could not find class 'org.json.simple.JSONArray', referenced from…
Darko Petkovski
  • 3,892
  • 13
  • 53
  • 117
1
vote
1 answer

how to use sync api to upload file to dropbox android

I am a new android developer, I want to write a program to upload a specify file from my mobile to Dropbox whenever it is updated in local. Should I use Sync API or Core API? Or both can archieve my aim? For using SYNC api, how can i locate the…
1
vote
2 answers

Dropbox API: List files only (including those in subfolders)

I am trying to list all files in a specific Dropbox folder, including the files in subfolders, but without displaying the folders themselves. I am using the DropboxClient PHP Class, but am not attached to it. My current code works only for files in…
rafleo
  • 580
  • 8
  • 28
1
vote
2 answers

Uploading large files to dropbox in chunks using dropnet

I recently tried Dropnet API to connect dropbox app in my C# project. Everything works fine, but I want to upload large files through chunkupload request. public void FileUpload() { string file = @"E:\threading.pdf"; int chunkSize = 1 * 1024…
1
vote
1 answer

Unable to create link with DBX chooser error android

I am attempting to integrate the Dropbox chooser drop-in api into my application. I am running into an abnormal issue. In my app when I launch the dbx chooser, anytime that I select a file the application fails with the following error code:…
1
vote
1 answer

Class DropboxAPI.DeltaPage - what is MD?

I am trying to create a DeltaPage object using the Dropbox Core API. I should get this by calling delta which takes a cursor argument detailing past calls to delta (initially null). Eclipse says DropboxAPI.DeltaPage is a raw type. References to…
samleighton87
  • 559
  • 1
  • 5
  • 13
1
vote
0 answers

Sync API or Datastore API for database backup

I am thinking of using dropbox to provide capability for users to backup the local SQLite Database and restore it back. Basically I want to copy the db file to dropbox when backing up and copy it back when restoring. To do this , which API should I…
Snake
  • 14,228
  • 27
  • 117
  • 250
1 2 3
99
100