Subject: | Examples don't work? |
Hi,
Can you confirm this still works as there have been no updates in a while, as this does not
work:
#!/usr/bin/env perl
use warnings;
use strict;
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
print "$login_link\n";
Thanks.