con-troll / auth-openid-connect
Simple OpenID Connect library
1.1.0
2017-06-09 17:25 UTC
Requires
- php: >=5.6
- ext-curl: *
- ext-json: *
- phpseclib/phpseclib: ~2.0
This package is auto-updated.
Last update: 2025-03-08 23:41:26 UTC
README
A relatively simple library that allows an application to authenticate a user through the basic OpenID Connect flow. This is a fork of the OpenID-ConnectP-PHP library by Michael Jett, but extends it to allow finer manipulation of the protocol to allow the HTTP rediret to be handled differently then throwing a 302 Redirect from within the library.
Requirements
- PHP 5.6 or greater
- CURL extension
- JSON extension
Example 1: Basic Client
$oidc = new OpenIDConnectClient('https://id.provider.com/', 'ClientIDHere', 'ClientSecretHere'); $url = $oidc->getAuthorizationURL(); // send the client to complete the login // ... // capture the authentication token from the callback into $code $oidc->complete($code); $name = $oidc->requestUserInfo('given_name');