root/branches/release-39/extlib/Net/OAuth/AccessTokenRequest.pm @ 2528

Revision 2528, 0.7 kB (checked in by fumiakiy, 18 months ago)

Updated Net::OAuth modules to the latest version. BugId:80041

Line 
1package Net::OAuth::AccessTokenRequest;
2use warnings;
3use strict;
4use base 'Net::OAuth::Request';
5
6__PACKAGE__->add_required_message_params(qw/token/);
7__PACKAGE__->add_required_api_params(qw/token_secret/);
8sub allow_extra_params {0}
9sub sign_message {1}
10
11=head1 NAME
12
13Net::OAuth::RequestTokenRequest - An OAuth protocol request for an Access Token
14
15=head1 SEE ALSO
16
17L<Net::OAuth::Request>, L<http://oauth.net>
18
19=head1 AUTHOR
20
21Keith Grennan, C<< <kgrennan at cpan.org> >>
22
23=head1 COPYRIGHT & LICENSE
24
25Copyright 2007 Keith Grennan, all rights reserved.
26
27This program is free software; you can redistribute it and/or modify it
28under the same terms as Perl itself.
29
30=cut
31
321;
Note: See TracBrowser for help on using the browser.