• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

bin/H23-Oct-2012-4635

examples/H23-Oct-2012-4636

inc/Module/H23-Oct-2012-3,1352,352

lib/Net/Dropbox/H23-Oct-2012-528246

t/H23-Oct-2012-9868

ChangesH A D23-Oct-20121.7 KiB6343

MANIFESTH A D30-May-2012489 2625

MANIFEST.SKIPH A D30-May-201267 87

META.ymlH A D23-Oct-2012814 3938

Makefile.PLH A D30-May-2012502 2719

READMEH A D30-May-20121.7 KiB6542

README

1Net::Dropbox::API
2=================
3
4Net::Dropbox::API is a perl interface to the Dropbox API. Find details about
5the Dropbox API on: https://www.dropbox.com/developers
6
7The Dropbox API is a OAuth based API. I try to abstract as much away as
8possible so you should not need to know too much about it.  This is how
9it works:
10
11   use Net::Dropbox::API;
12
13   my $box = Net::Dropbox::API->new({key => 'KEY', secret => 'SECRET'});
14   my $login_link = $box->login; # user needs to click this link and login
15   $box->auth;                   # oauth keys get exchanged
16   my $info = $box->info;        # and here we have our account info
17
18See the examples for a working Mojolicious web client using the Dropbox
19API.
20
21INSTALLATION
22------------
23
24To install this module, run the following commands:
25
26	perl Makefile.PL
27	make
28	make test
29	make install
30
31SUPPORT AND DOCUMENTATION
32-------------------------
33
34After installing, you can find documentation for this module with the
35perldoc command.
36
37    perldoc Net::Dropbox
38
39You can also look for information at:
40
41    RT, CPAN's request tracker
42        http://rt.cpan.org/NoAuth/Bugs.html?Dist=Net-Dropbox
43
44    AnnoCPAN, Annotated CPAN documentation
45        http://annocpan.org/dist/Net-Dropbox
46
47    CPAN Ratings
48        http://cpanratings.perl.org/d/Net-Dropbox
49
50    Search CPAN
51        http://search.cpan.org/dist/Net-Dropbox/
52
53
54COPYRIGHT AND LICENCE
55---------------------
56
57Copyright (C) 2010 Lenz Gschwendtner
58
59This program is free software; you can redistribute it and/or modify it
60under the terms of either: the GNU General Public License as published
61by the Free Software Foundation; or the Artistic License.
62
63See http://dev.perl.org/licenses/ for more information.
64
65