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

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

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

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