line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Mojolicious::Plugin::Web::Auth::Site::Dropbox; |
2
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
1040
|
use Mojo::Base qw/Mojolicious::Plugin::Web::Auth::OAuth/; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
7
|
|
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
has user_info => 1; |
6
|
|
|
|
|
|
|
has request_token_url => 'https://api.dropbox.com/1/oauth/request_token'; |
7
|
|
|
|
|
|
|
has authorize_url => 'https://api.dropbox.com/1/oauth/authorize'; |
8
|
|
|
|
|
|
|
has access_token_url => 'https://api.dropbox.com/1/oauth/access_token'; |
9
|
|
|
|
|
|
|
has user_info_url => 'https://api.dropbox.com/1/account/info'; |
10
|
|
|
|
|
|
|
|
11
|
0
|
|
|
0
|
0
|
|
sub moniker {'dropbox'}; |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
1; |