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