gnu-social/plugins/OpenID
Alexei Sorokin fde929b151 [DATABASE] Switch from PEAR DB to MDB2 2020-09-14 22:46:29 +03:00
..
actions Set HTTP status codes with http_​response_​code() 2020-08-04 14:12:17 +03:00
classes [DATABASE] Fix index identifiers and clean up redundant ones 2020-07-31 16:12:48 +03:00
doc-src Update openid docs 2011-09-30 14:52:51 -04:00
extlib OpenID access control options: trusted provider URL, Launchpad team restrictions. Added an admin panel for setting these and OpenID-only mode, off by default. 2010-05-18 13:28:41 -07:00
lib [DATABASE] Switch from PEAR DB to MDB2 2020-09-14 22:46:29 +03:00
locale [VersionBump] 2.0.0alpha0 2020-08-04 05:31:44 +01:00
OpenIDPlugin.php [OpenID] Correct table definition types 2020-08-24 16:27:44 +03:00
README Add plugin READMEs 2016-02-08 17:48:37 +00:00
openid.php [DATABASE] Switch from PEAR DB to MDB2 2020-09-14 22:46:29 +03:00

README

The OpenID plugin allows users to use OpenID to login.

See: http://openid.net/

Installation
============
This plugin is enabled by default

Settings
========
openidonly: Whether we only allow logins through OpenID.
trusted_provider: URL to the OpenID provider.
append_username: Whether to append the username at the end of the OpenID URL

Example
=======
$config['site']['openidonly'] = true;
$config['openid']['trusted_provider'] = "http://example.org";
$config['openid']['append_username'] = true;
addPlugin('OpenID');