oauth2-server-php-docs icon indicating copy to clipboard operation
oauth2-server-php-docs copied to clipboard

documentation for the oauth2-server-php library

Results 48 oauth2-server-php-docs issues
Sort by recently updated
recently updated
newest added
trafficstars

Every button (authorize etc, ) ends with an error page. typically: PDOException in Pdo.php line 212: SQLSTATE[HY000]: General error: 8 attempt to write a readonly database. CSS files are not...

Following the 'Step-By-Step Walkthrough' documentation, I am unable to complete the 'Setting up a token controller' step. I have created the directory `/my/web/directory/private_html/user-api`. Within that folder I issued the following...

Hi, I may have missed something, but I don't find how to generate at_hash claim in IdToken, despite it is planed in IdToken::createIDToken. Thanks for your Help! What I understand...

When I send an request to a resource controller without the access token, I receive no response (no error saying access token is required). Is this intentional? I do receive...

When I use Pdo Storage together with option "use_jwt_access_tokens", the generated access tokens are very long but the database field "access_token" in table "oauth_access_tokens" can handle just 40 characters (see...

The class of refresh token have any option to parse token in jwt, same access token?

I don't know if it is a bug or a mistake into Cookbook (Step-By-Step Walkthrough), but when you call this one: curl -u testclient:testpass http://localhost/token.php -d 'grant_type=authorization_code&code=YOUR_CODE' It fails. I...

Please add to the openID documentation, that you musst add a new grant type $config['use_openid_connect'] = true; $config['issuer'] = 'brentertainment.com'; $server = new OAuth2\Server($config); $server->addGrantType(new OAuth2\OpenID\GrantType\AuthorizationCode($storage));

from @jgoux > Hello, > I want to implement the User credentials grant with your library (which is excellent :D) > I have an issue with the constraints set on...

According to an email I received, `CGIPassAuth on` needs to be set in `nginx.conf` for NGINX php-fpm in order for the `PHP_AUTH_USER ` and `PHP_AUTH_PASS` environment variables to be populated....