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

I get the following error in my slim3 app: ``` Cannot use object of type stdClass as array Message: Cannot use object of type stdClass as array File: /var/www/slimapi/vendor/bshaffer/oauth2-server-php/src/OAuth2/Controller/ResourceController.php Line:...

show how `UserCredentials` and `AuthorizationCode` grant types can be used without `client_secret` for Public Clients

from https://github.com/bshaffer/oauth2-server-php/issues/231 I've just upgraded from an older version of this library to the latest on my server. Most everything seems to be working fine, however, I cannot seem to...

Document OpenID Connect integration

See the [Wordpress OAuth2 Plugin](https://wordpress.org/plugins/oauth2-provider/) and add it to the cookbook, specifically the [Wordpressdb Storage Adapter](https://github.com/justingreerbbi/wordpress-oauth-server/blob/master/library/OAuth2/Storage/Wordpressdb.php)

Hello, I'm trying to implement oauth2-server (with the client credentials flow) with Slim framework. Would it be possible to add a working example to the cookbook ? I don't know...

Xauth: https://dev.twitter.com/oauth/xauth Is user credentials grant type related to xauth?

It would be nice to able to store the relationship between access_tokens and their refresh_tokens to make revoking tokens and clearing expired tokens cleaner. However, adding the parameter to `RefreshTokenInterface::setRefreshToken`...

see https://github.com/bshaffer/oauth2-server-php/pull/460 We need to rename the claims in the docs to be consistent with the latest version of the library: http://bshaffer.github.io/oauth2-server-php-docs/overview/jwt-access-tokens/

I have managed to add scope on the jwt bearer grant type but it won't validate the scope like other grant types are doing by default. $jwt = generateJWT($private_key, $client_id,...