|
Revision 476, 0.9 kB
(checked in by lopnor, 6 years ago)
|
|
lang/perl/Apache2-AuthenOpenID: first release.
|
| Line | |
|---|
| 1 | NAME |
|---|
| 2 | Apache2::AuthenOpenID - OpenID authen hander for mod_perl2. |
|---|
| 3 | |
|---|
| 4 | SYNOPSIS |
|---|
| 5 | LoadModule perl_module modules/mod_perl.so |
|---|
| 6 | PerlLoadModule Apache2::AuthenOpenID |
|---|
| 7 | |
|---|
| 8 | AuthType OpenID |
|---|
| 9 | AuthName "My private documents" |
|---|
| 10 | return_to http://sample.com/path/to/callback |
|---|
| 11 | trust_root http://sample.com/your/trust_root/ |
|---|
| 12 | consumer_secret "your consumer secret" |
|---|
| 13 | require user sample.com/someidentity |
|---|
| 14 | |
|---|
| 15 | DESCRIPTION |
|---|
| 16 | You can distinguish users with OpenID using this module. |
|---|
| 17 | |
|---|
| 18 | SEE ALSO |
|---|
| 19 | Net::OpenID::Consumer <http://openid.net> |
|---|
| 20 | |
|---|
| 21 | AUTHOR |
|---|
| 22 | Nobuo Danjou, nobuo.danjou@gmail.com |
|---|
| 23 | |
|---|
| 24 | COPYRIGHT AND LICENSE |
|---|
| 25 | Copyright (C) 2007 by Nobuo Danjou |
|---|
| 26 | |
|---|
| 27 | This library is free software; you can redistribute it and/or modify it |
|---|
| 28 | under the same terms as Perl itself, either Perl version 5.8.8 or, at |
|---|
| 29 | your option, any later version of Perl 5 you may have available. |
|---|
| 30 | |
|---|