This repository is being developed and it's highly unstable.
Drahak/OAuth2 requires PHP version 5.3.0 or higher. The only production dependency is Nette framework 2.0.x.
The easist way is to use Composer
$ composer require drahak/oauth2:@dev
Then add following code to your app bootstrap file before creating container:
Drahak\OAuth2\DI\Extension::install($configurator);
oauth2:
accessTokenLifetime: 3600 # 1 hour
refreshTokenLifetime: 36000 # 10 hours
authorizationCodeLifetime: 360 # 6 minutes
accessTokenLifetime
- access token life time in secondsrefreshTokenLifetime
- refresh token life time in secondsauthorizationCodeLifetime
- authorization code life time in seconds
+--------+ +---------------+
| |------ Authorization Request ->| Resource |
| | | Owner |
| |<------ Authorization Grant ---| |
| | +---------------+
| |
| | +---------------+
| |------- Authorization Grant -->| Authorization |
| Client | | Server |
| |<--------- Access Token -------| |
| | +---------------+
| |
| | +---------------+
| |---------- Access Token ------>| Resource |
| | | Server |
| |<------- Protected Resource ---| |
+--------+ +---------------+
This application wants to get user's data from Resource server, so it needs to get an access token.
There is data which client wants. API server uses access token to access user's information.
Gives access to some portion of their account.
See also OAuth 2 Simplified and original specification
Presenter (IOAuthPresenter
) that gives an access. In base it has 2 main methods, issueAccessToken
and issueAuthorizationCode
. Simple OAuth (Resource owner) presenter could looks like this:
namespace MyApp\OAuth;
use Drahak\OAuth2\Grant\IGrant;
use Drahak\OAuth2\Application;
use Drahak\OAuth2\OAuthException;
class AuthorizationPresenter extends Application\OAuthPresenter
{
/**
* Authorization
* @param string $response_type
* @param string $redirect_uri
* @param string|null $scope
*/
public function actionAuthorize($response_type, $redirect_uri, $scope = NULL)
{
if (!$this->user->isLoggedIn()) {
$this->redirect('AnyUser:login', array('backlink' => $this->storeRequest()));
}
if ($response_type == 'code') {
$this->issueAuthorizationCode($response_type, $redirect_uri, $scope);
} else if ($response_type == 'token') {
$this->issueAccessToken(IGrant::IMPLICIT, $redirect_uri);
}
}
/**
* Access token provider
*/
public function actionToken()
{
try {
$this->issueAccessToken();
} catch (OAuthException $e) {
$this->oauthError($e);
}
}
}
Method issueAccessToken
determines correct grant type from grant_type
parameter. In case of error throws some OAuthException
which can be handled by oauthError
method in default implementation.
Action authorize
is more complex. This is used for generating Authorization code (see below - Authorization code) but for Implicit grant type it's necessary to generate access token here. In case if user is not logged in, redirect user to some login page and then restore authorization request using backlink.
Are determined by grant_type
parameter. There is support of base grant types as defined in OAuth2 specification: Authorization Code, Implicit, Password, Client Credentials and Refresh token.
- Authorization code
This grant type is great for third-party applications which can secure client secret code.
To generate access token, you'll need to get authorization code first. You can obtain it from IOAuthPresenter
by calling issueAuthorizationCode
GET //oauth.presenter.url/authorize?response_type=code&client_id=CLIENT_ID&redirect_uri=REDIRECT_URI&scope=email
- [REQUIRED] response_type - you want to generate authorization
code
- [REQUIRED] client_id - client ID (e.g. application) that requests for access token
- [REQUIRED] redirect_uri - URL address whereto redirect in case of success or error
- [OPTIONAL] scope - specify the scope of access request
In any case (error or success) Resource owner redirects back to the client using redirect_uri
with authorization code as a query parameter:
//redirect_uri/?code=AnlSCIWYbchsCc5sdc5ac4caca8a2
Or
//redirect_uri/?error=unauthorized_client&error_description=Client+is+not+found
Since you have authorization code you can make access token request (data provided as application/x-www-form-urlencoded
)
POST //oauth.presenter.url/token
grant_type=authorization_code
&code=AUTHORIZATION_CODE
&client_id=CLIENT_ID
&client_secret=CLIENT_SECRET
- [REQUIRED] grant_type - this parameter says OAuth to use Authorization code
- [REQUIRED] code - authorization code which you got from Resource owner
- [REQUIRED] client_id - client ID (e.g. application) that requests for access token
- [REQUIRED] client_secret - client (e.g. application) secret key that requests for access token
{
"access_token": "AnlSCIWYbchsCc5sdc5ac4caca8a2",
"token_type": "bearer",
"expires_in": 3600,
"refresh_token": "DS6SA512ADCVa51adc54VDS51VD5"
}
In case or error, provides JSON response:
{
"error": "invalid_request",
"error_description": "Invalid authorization code"
}
- Implicit
Is used for browser-based (web) or mobile applications, where you can't secure client secret so yopu can't use it to obtain access token.
GET //oauth.presenter.url/authorization?response_type=token&client_id=CLIENT_ID&redirect_uri=REDIRECT_URI&scope=email
- [REQUIRED] response_type - since you request access token from Resource owner, you must tell you want an access token (not authorization code)
- [REQUIRED] client_id - client ID (e.g. application) that requests for access token
- [REQUIRED] redirect_uri - URL where to redirect in case of success or error
- [OPTIONAL] scope - specify the scope of access request
Redirect to redirect_uri
//redirect_uri/#access_token=AnlSCIWYbchsCc5sdc5ac4caca8a2&expires_in=3600&token_type=bearer
In case or error, redirects to:
//redirect_uri/#error=unauthorized_client&error_description=Client+is+not+found
- Password
Is used for trusted (usually first-party) applications, where you completely trust client because you generate access token from real user credentials (username, password)
POST //oauth.presenter.url/token
grant_type=password
&username=USERNAME
&password=PASSWORD
&client_id=CLIENT_ID
- [REQUIRED] grant_type - Password grant type uses identifier (so unexpectedly)
password
- [REQUIRED] client_id - client ID (e.g. application) that requests for access token
- [REQUIRED] username - real user's username
- [OPTIONAL] password - real user's password
{
"access_token": "AnlSCIWYbchsCc5sdc5ac4caca8a2",
"token_type": "bearer",
"expires_in": 3600,
"refresh_token": "DS6SA512ADCVa51adc54VDS51VD5"
}
In case or error:
{
"error": "invalid_request",
"error_description": "Invalid authorization code"
}
- Client credentials
If application needs to get access token for their own account outside the context of any specific user this is probably the best way.
POST //oauth.presenter.url/token
grant_type=client_credentials
&client_id=CLIENT_ID
&client_SECRET=CLIENT_SECRET
- [REQUIRED] grant_type - Password grant type uses identifier (so unexpectedly)
password
- [REQUIRED] client_id - client ID (e.g. application) that requests for access token
- [REQUIRED] client_secret - client (e.g. application) secret key that requests for access token
{
"access_token": "AnlSCIWYbchsCc5sdc5ac4caca8a2",
"token_type": "bearer",
"expires_in": 3600,
"refresh_token": "DS6SA512ADCVa51adc54VDS51VD5"
}
In case or error:
{
"error": "invalid_request",
"error_description": "Invalid authorization code"
}
- Refresh token
Is used to restore (actually re-generate) access token without authentication process. Refresh token is provided with almost every grant type (excluding Implicit).
POST //oauth.presenter.url/token
grant_type=refresh_token
&refresh_token=DS6SA512ADCVa51adc54VDS51VD5
&client_id=CLIENT_ID
- [REQUIRED] grant_type - Refresh token identifier
- [REQUIRED] refresh_token - refresh token itself, that you got from almost any access token
- [REQUIRED] client_id - client ID (e.g. application) that requests for access token
{
"access_token": "AnlSCIWYbchsCc5sdc5ac4caca8a2",
"token_type": "bearer",
"expires_in": 3600,
"refresh_token": "DS6SA512ADCVa51adc54VDS51VD5"
}
In case or error:
{
"error": "invalid_request",
"error_description": "Invalid refresh token"
}