root/branches/release-38/extlib/Net/OAuth/AccessTokenRequest.pm @ 2229

Revision 2229, 0.6 kB (checked in by fumiakiy, 19 months ago)

Adding Net::OAuth modules in MT distribution. BugId:69893

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