Dropbox PHP SDK is MIT licensed and intended to be useful both as reference documentation and for regular use. However members of Dropbox developer community have also created alternative libraries in other programming languages.
-1
votes
1answer
8 views
With dropbox API is it possible to generate a public link?
I'm just wondering if it would be possible to generate a public link to dropbox content with the API?
I'm asking this because I'm looking to upload videos from dropbox to a remote server and I want ...
0
votes
0answers
18 views
What is the Key/Value required for deserialize function in AccessToken.php?
I'm using the Dropbox PHP SDK to connect my web app to Dropbox.
I have successfully authenticated against the oauth Dropbox system and I have stored the Access Token in a serialised form for later ...
0
votes
1answer
63 views
Dropbox API, renaming and unique IDs
I know this has been touched upon in this post, but I was hoping for some additional clarification about this.
Currently, with the Dropbox Core API, there doesn't seem to be a way to track files that ...
4
votes
3answers
263 views
How to copy files from server to Dropbox using PHP? [duplicate]
I think I may have found a PHP program to upload files from a specific folder onto my Dropbox account. The full solution can be found here.
The code seems to work because files and folders a like are ...
1
vote
3answers
261 views
How to backup files from a specific directory to Dropbox using PHP only?
I would like to create a PHP script to backup files from a particular directory on my website to my Dropbox account.
I tried to search for examples and how to work around it but I only found code to ...
0
votes
0answers
48 views
Gaufrette and Dropbox adapter: Dropbox_Exception_Forbidden: Forbidden
I'm getting the error below when I'm running $filesystem->has('foo'). What am I doing wrong?
Dropbox_Exception_Forbidden: Forbidden. This could mean a bad OAuth request, or a file or folder already ...
0
votes
0answers
63 views
Send to dropbox big file (php)
I am trying send a big archive (100 mb) to Dropbox using http://www.dropbox-php.com/
Dropbox answer: Invalid auth/bad request (got a 413, expected HTTP/1.1 20X or a redirect)
Small files i can send ...
0
votes
2answers
136 views
Dropbox Api putFile php fail send file
I am trying send a file to Dropbox using http://www.dropbox-php.com/
Dropbox-PHP answers: Forbidden. This could mean a bad OAuth request, or a file or folder already existing at the target location.
...
2
votes
1answer
108 views
Dropbox API direct account access
I have been studying the documentation for the Dropbox API but I couldn't find a way to directly access an account without going to the OAuth process. Is there a way to achieve that?
My final goal is ...
1
vote
2answers
105 views
Google Doc and DropBox PHP api's
I want to add a list of all files from my google docs and from dropbox on my website(not a google site). The code of my website is mostly in PHP. I am unable to find a PHP guide for Google Docs list ...
0
votes
2answers
208 views
Get list of files for dropbox shared link
What I'm trying to do seems rather simple, but I can't find a way to do it.
Imagine somebody sends you a link for a dropbox folder. You can go to that URL and see all the files in the folder.
I'm ...
0
votes
1answer
284 views
Dropbox API unable to fetch request tokens
I've developed a small Dropbox based app. I've done all the coding in PHP using symfony 1.4 and the dropbox-php library. Locally on my machine everything works just fine. But on a public test server ...
0
votes
1answer
121 views
add dropbox option to joomla on new user creation
I'm using this plugin to permit the integration of dropbox into joomla.
When an user login te system create a folder in your dropbox account and everything works fine.
What I need is to add this ...
3
votes
2answers
248 views
Dropbox app destined to interact with only one dropbox account
My need is to have a simple web form that also lets people upload some pdf's.
What I was thinking I could do (because of the size and number of uploaded files) is to tie the backend of this app to ...
1
vote
1answer
174 views
Getting lots of entries in delta API
I have an app where i am using delta API to keep up with user's metadata
changes. I have a user for whom i am getting a lot of entries and cursor
is keep on changing. It has been 2 days and still i ...
0
votes
0answers
210 views
Dropbox Sync for image gallery maintained in database instead of physcial folders
I have simple image gallery in worpdress and want to sync it with dropbox. I manage to create folder and copy images but having problem to sync when new photos are uploaded or deleted.
I don't need ...
0
votes
0answers
203 views
Dropbox Sync folder for virtual folder
I am somewhat newbie with dropbox api.
I have to sync users folder/files information which is stored in database with the dropbox.
Creating folder and files based on information stored in database ...
1
vote
2answers
657 views
How to create folder(if not exist) in dropbox accout using php-api?
am trying to learn dropbox php-api.
i have done upload, but unable to create a new folder(if not exist) in dropbox account
code snippet :
// Create new directory
$create_new_folder = ...
1
vote
2answers
3k views
Unable to upload files to dropbox using php api?
I am trying to upload file using dropbox api but following Code shows some errors as:
bootstrap.php
// Register a simple autoload function
spl_autoload_register(function($class){
$class = ...
2
votes
3answers
2k views
List files in dropbox folder
Im having problems with the dropbox API.
When i try to get the metadata for my folder, i get the data output like this:
...
3
votes
3answers
4k views
Retrieve contents of a public Dropbox folder?
Is there a way to retrieve a list of the contents of a public Dropbox folder (preferably in PHP)? This is what a URL to a public file in Dropbox looks like:
...
2
votes
2answers
858 views
Get Info OAuth Dropbox API in PHP
I am trying to get the request token from Dropbox.
Till now I have tried countless libraries, some don't work, some are not maintained, and some simply you don't know what to do.
So I think it'll be ...
2
votes
1answer
634 views
Dropbox php api issues
I keep getting issues with dropbox php api, i am just trying to get it to work using getmeta. but i keep getting the following error??
I think the issues is here.
public function getToken($email, ...
0
votes
1answer
95 views
Video Sharing Website
I want to develop a site that will allow me to upload videos (flv's). There will be a different video file for each registered user. Registered users will then log in and be brought to their own page ...
0
votes
1answer
2k views
How to get the dropbox-php library with pear HTTP_OAUTH to work?
I've been struggelig to get the dropbox-php library to work, but the page where I try to use the classes outputs an error:
Warning: include(HTTP/OAuth/Consumer.php) [function.include]: failed to open ...
2
votes
1answer
2k views
How can I use the newly revamped Dropbox-PHP API?
I would like to use the Dropbox-PHP API that has recently come under development again. It is located here: http://code.google.com/p/dropbox-php/
I did cloned it with hg clone ...