Sponsored Content
Top Forums Programming How to Integrate DropBox in PHP Web Application? Post 302699441 by hergp on Tuesday 11th of September 2012 04:34:36 PM
Old 09-11-2012
There is a lot of information at https://www.dropbox.com/developers - maybe this helps.
 

4 More Discussions You Might Find Interesting

1. UNIX and Linux Applications

Integrate PHP + Unix commands

Hi I am using fedora 4, its only for desktop usage. its in gui mode. the system is always on and in login screen. whenever a particular user logins in, aphp page inside the system should run. The user should not be able to view the desktop. The user has the info in the php webpage to work... (1 Reply)
Discussion started by: karthikn7974
1 Replies

2. Web Development

Web Application creation on UNIX

Hi, I would like to create an application with HTML front end in Unix. I am working on enterprise Unix server, so I could not install any add ons or software in my machine. but still i have super user permissions. I can change the permissions as i wish. I have built a small application with... (1 Reply)
Discussion started by: Balasankar
1 Replies

3. Web Development

Starting Web Application on Jboss

Hello, I installed Jboss EAP 6 on a remote Linux server in standalone mode, and deployed a HelloWorld war file successfully. Opened a browser on my PC and pointed to http://127.0.0.1:8080/filename. I can see “Hello World!” on my browser. However, if the browser points to http://server's... (3 Replies)
Discussion started by: learnix
3 Replies

4. Web Development

Help to integrate Shell script with PHP

I have a shell script which takes user name and server name from the user and check the authentication type on that server like LDAP or VAS or local. It also provides various other info also such as owner of the ID and etc. I need this script to work on the browser where user can directly input... (2 Replies)
Discussion started by: Bhuwan Nazkani
2 Replies
Net::Dropbox::API(3pm)					User Contributed Perl Documentation				    Net::Dropbox::API(3pm)

NAME
Net::Dropbox::API - A dropbox API interface VERSION
Version 1.8.8.8 SYNOPSIS
The Dropbox API is a OAuth based API. I try to abstract as much away as possible so you should not need to know too much about it. This is how it works: use Net::Dropbox::API; my $box = Net::Dropbox::API->new({key => 'KEY', secret => 'SECRET'}); my $login_link = $box->login; # user needs to click this link and login $box->auth; # oauth keys get exchanged my $info = $box->account_info; # and here we have our account info See the examples for a working Mojolicious web client using the Dropbox API. You can find Dropbox's API documentation at <https://www.dropbox.com/developers/web_docs> FUNCTIONS
login This sets up the initial OAuth handshake and returns the login URL. This URL has to be clicked by the user and the user then has to accept the application in dropbox. Dropbox then redirects back to the callback URL defined with "$self->callback_url". If the user already accepted the application the redirect may happen without the user actually clicking anywhere. auth The auth method changes the initial request token into access token that we need for subsequent access to the API. This method only has to be called once after login. account_info account_info polls the users info from dropbox. list lists all files in the path defined: $data = $box->list(); # top-level $data = $box->list( "/Photos" ); # folder The data returned is a ref to a hash containing various fields returned by Dropbox, including a "hash" value, which can be used later to check if Dropbox data beneath a specified folder has changed since the last call. For this, "list()" accepts an optional 'hash' argument: $data = $box->list({ hash => "ce9ccbfb8f255f234c93adcfef33b5a6" }, "/Photos"); This will either return { http_response_code => 304 } in which case nothing has changed since the last call, or { http_response_code => 200, # ... various other fields } if there were modifications. copy copies a folder copy($from, $to) move move a folder move($from, $to) mkdir creates a folder mkdir($path) delete delete a folder delete($path) view creates a cookie protected link for the user to look at. view($path) metadata creates a cookie protected link for the user to look at. metadata($path) putfile uploads a file to dropbox getfile get a file from dropbox debug Set this to a non-false value in order to print some debugging information to STDOUT. debug(1) INTERNAL API
_talk _talk handles the access to the restricted resources. You should normally not need to access this directly. nonce Generate a different nonce for every request. AUTHOR
Lenz Gschwendtner, "<norbu09 at cpan.org>" With Bug fixes from: Greg Knauss "gknauss at eod.com" Chris Prather "chris at prather.org" Shinichiro Aska [ktdreyer] SureVoIP <http://www.surevoip.co.uk> BUGS
Please report any bugs through the web interface at https://github.com/norbu09/Net--Dropbox/issues <https://github.com/norbu09/Net--Dropbox/issues>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. SUPPORT
You can find documentation for this module with the perldoc command. perldoc Net::Dropbox::API You can also look for information at: o AnnoCPAN: Annotated CPAN documentation http://annocpan.org/dist/Net-Dropbox-API <http://annocpan.org/dist/Net-Dropbox-API> o CPAN Ratings http://cpanratings.perl.org/d/Net-Dropbox-API <http://cpanratings.perl.org/d/Net-Dropbox-API> o Search CPAN http://search.cpan.org/dist/Net-Dropbox-API/ <http://search.cpan.org/dist/Net-Dropbox-API/> COPYRIGHT &; LICENSE Copyright 2010 Lenz Gschwendtner. This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License. See http://dev.perl.org/licenses/ for more information. perl v5.14.2 2012-03-22 Net::Dropbox::API(3pm)
All times are GMT -4. The time now is 05:59 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy