oauth2-php
oauth2-php copied to clipboard
A server implementation of OAuth 2.0
What about using Symfony’s `SecureRandom` or `random_bytes()` to generate tokens?
Similar to https://github.com/FriendsOfSymfony/FOSOAuthServerBundle/issues/305 but for general: the library should allow for custom parameters in the response payloads in case the application wants to transmit custom information like a custom error...
In the function grantAccessTokenRefreshToken in OAuth2.php, it does a fetch for the current token object, $token = $this->storage->getRefreshToken($input["refresh_token"]); if ($token === null || $client->getPublicId() !== $token->getClientId()) { .... } In...
Hi, Do you plan to support some part of the [RFC 6750 "The OAuth 2.0 Authorization Framework: Bearer Token Usage"](http://tools.ietf.org/html/rfc6750)? On my current project, I would like to implement the...
According to the OAuth specs, it's possible to add the assertion grant type (see example here http://tools.ietf.org/html/draft-ietf-oauth-v2-20#section-4.5). Is it possible to handle such grant types with this library?
In the OAuth2 spec on granting an access token, "the authorization server MAY fully or partially ignore the scope requested by the client based on the authorization server policy or...
How can I get rolemap id once an invitation sent to a user?. Right now it send json as an response and it has a user id in it but...
The mongo server example is not working, it references MongoOAuth2, which does not exist.