|
Revision 2229, 0.5 kB
(checked in by fumiakiy, 19 months ago)
|
|
Adding Net::OAuth modules in MT distribution. BugId:69893
|
| Line | |
|---|
| 1 | package Net::OAuth::RequestTokenRequest; |
|---|
| 2 | use warnings; |
|---|
| 3 | use strict; |
|---|
| 4 | use base 'Net::OAuth::Request'; |
|---|
| 5 | |
|---|
| 6 | =head1 NAME |
|---|
| 7 | |
|---|
| 8 | Net::OAuth::RequestTokenRequest - An OAuth protocol request for a Request Token |
|---|
| 9 | |
|---|
| 10 | =head1 SEE ALSO |
|---|
| 11 | |
|---|
| 12 | L<Net::OAuth::Request>, L<http://oauth.net> |
|---|
| 13 | |
|---|
| 14 | =head1 AUTHOR |
|---|
| 15 | |
|---|
| 16 | Keith Grennan, C<< <kgrennan at cpan.org> >> |
|---|
| 17 | |
|---|
| 18 | =head1 COPYRIGHT & LICENSE |
|---|
| 19 | |
|---|
| 20 | Copyright 2007 Keith Grennan, all rights reserved. |
|---|
| 21 | |
|---|
| 22 | This program is free software; you can redistribute it and/or modify it |
|---|
| 23 | under the same terms as Perl itself. |
|---|
| 24 | |
|---|
| 25 | =cut |
|---|
| 26 | |
|---|
| 27 | 1; |
|---|