Merge branch 'gh-pages' of github.com:thephpleague/oauth2-server into gh-pages

This commit is contained in:
Alex Bilbie 2016-05-10 08:22:34 +01:00
commit 589bfb1a99
2 changed files with 2 additions and 1 deletions

View File

@ -59,7 +59,7 @@ $grant = new \League\OAuth2\Server\Grant\PasswordGrant(
$refreshTokenRepository $refreshTokenRepository
); );
$grant->setRefreshTokenTTL(new \DateTime('P1M')); // refresh tokens will expire after 1 month $grant->setRefreshTokenTTL(new \DateInterval('P1M')); // refresh tokens will expire after 1 month
// Enable the password grant on the server // Enable the password grant on the server
$server->enableGrantType( $server->enableGrantType(

View File

@ -12,5 +12,6 @@ permalink: /terminology/
* `Client` - An application which accesses protected resources on behalf of the resource owner (such as a user). The client could be hosted on a server, desktop, mobile or other device. * `Client` - An application which accesses protected resources on behalf of the resource owner (such as a user). The client could be hosted on a server, desktop, mobile or other device.
* `Grant` - A grant is a method of acquiring an access token. * `Grant` - A grant is a method of acquiring an access token.
* `Resource server` - A server which sits in front of protected resources (for example "tweets", users' photos, or personal data) and is capable of accepting and responsing to protected resource requests using access tokens. * `Resource server` - A server which sits in front of protected resources (for example "tweets", users' photos, or personal data) and is capable of accepting and responsing to protected resource requests using access tokens.
* `Resource owner` - The user who authorizes an application to access their account. The application's access to the user's account is limited to the "scope" of the authorization granted (e.g. read or write access).
* `Scope` - A permission. * `Scope` - A permission.
* `JWT` - A JSON Web Token is a method for representing claims securely between two parties as defined in [RFC 7519](https://tools.ietf.org/html/rfc7519). * `JWT` - A JSON Web Token is a method for representing claims securely between two parties as defined in [RFC 7519](https://tools.ietf.org/html/rfc7519).