Lightweight PHP library for easy OpenID authentication.
Version....:
1.3.4 ⏬ ( see the change log for details )Released on:
April 09, 2020Source code:
Official GitHub RepoHomepage...:
https://github.com/Satariall/LightOpenIDAuthors....:
Mewp, iignatov, Satariall
composer require satariall/lightopenid
-
Authentication with the provider:
$openid = new LightOpenID('my-host.example.org'); $openid->identity = 'ID supplied by user'; header('Location: ' . $openid->authUrl());
-
Verification:
$openid = new LightOpenID('my-host.example.org'); if ($openid->mode) { echo $openid->validate() ? 'Logged in.' : 'Failed!'; }
To use the AX and SREG extensions, specify $openid->required
and/or $openid->optional
before calling $openid->authUrl()
. These are arrays, with values being AX schema paths
(the 'path' part of the URL). For example:
$openid->required = array('namePerson/friendly', 'contact/email');
$openid->optional = array('namePerson/first');
Note that if the server supports only SREG or OpenID 1.1, these are automaticaly mapped to SREG names. To get the values use:
$openid->getAttributes();
For more information see USAGE.md.
This library requires PHP >= 7.0 with cURL or HTTP/HTTPS stream wrappers enabled.
- Easy to use - you can code a functional client in less than ten lines of code.
- Uses cURL if avaiable, PHP-streams otherwise.
- Supports both OpenID 1.1 and 2.0.
- Supports Yadis discovery.
- Supports only stateless/dumb protocol.
- Works with PHP >= 7.
- Generates no errors with
error_reporting(E_ALL | E_STRICT)
.
- JavaScript OpenID Selector - simple user interface that can be used with LightOpenID.
- HybridAuth - easy to install and use social sign on PHP library, which uses LightOpenID.
- OpenID Dev Specifications - documentation for the OpenID extensions and related topics.
LightOpenID is an open source software available under the MIT License.