summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2013-01-26validateClientData in JWTBearer grant type now throws exceptions because the ↵Francis Chuang1-2/+2
errors can only be triggered by developer error.
2013-01-26matching headers with spec when token is returnedBrent Shaffer1-1/+3
2013-01-26Renamed misleading variables and fixed comments.Francis Chuang1-5/+6
2013-01-26Formatting.Francis Chuang1-1/+1
2013-01-26Fixed bug in JWTBearer Grant Type where the decoding key for the JWT is not ↵Francis Chuang3-22/+48
included in the clientData array.
2013-01-26Merge pull request #50 from dazz/bugfix/noticeUndefinedVariableBrent Shaffer1-2/+2
fixed: notice undefined variable
2013-01-25fixed: variable and undefined variablesdazz1-2/+2
2013-01-25Silence openssl_verify() in JWT Util because if an error occurs, it will ↵Francis Chuang1-3/+3
throw warnings, which messes up the output.
2013-01-25Updated JWT Util to support more RSA signing algorithms.Francis Chuang1-4/+24
2013-01-25Updated getAccessTokenData to accept a request (OAuth2_RequestInterface) so ↵Francis Chuang3-11/+15
that it is easier to use it.
2013-01-24Merge pull request #38 from F21/masterBrent Shaffer4-42/+63
Fixed a small bug with the JWT Bearer Grant Type
2013-01-24Changed constant OPENSSL_ALGO_SHA256 to string 'sha256' to maintain ↵Francis Chuang1-2/+2
backwards compatibility with PHP 5.3.
2013-01-23adds support for application/json contentTypesBrent Shaffer1-0/+5
2013-01-23matching headers with spec when token is returnedBrent Shaffer1-1/+3
2013-01-23Removed setJWT() as it does not provide any useful functionality and added ↵Francis Chuang1-10/+6
variable to store undecoded JWT.
2013-01-23JWT grant type should take all parameters using POST, not GET.Francis Chuang1-3/+3
2013-01-23Updated creating an instance of the GrantedController to not force the ↵Francis Chuang1-1/+1
client_credentials storage.
2013-01-23Remove typing for ClientCredentials storage interface in the grant controller.Francis Chuang1-1/+1
2013-01-23Remove check for the ClientCredentials storage type because grant types that ↵Francis Chuang1-3/+1
uses ClientAssertionType does not require it.
2013-01-22Changed to LogicException.Francis Chuang1-1/+1
2013-01-22validateClientData in JWTBearer grant type now throws exceptions because the ↵Francis Chuang1-2/+2
errors can only be triggered by developer error.
2013-01-21addresses #32 - grant types are now HTTP POST onlyBrent Shaffer8-12/+19
2013-01-21adds documentation for the controller layerBrent Shaffer6-5/+47
2013-01-21Merge branch 'develop' of github.com:bshaffer/oauth2-server-php into developBrent Shaffer4-31/+98
2013-01-21fixes #39Brent Shaffer1-1/+1
2013-01-21Renamed misleading variables and fixed comments.Francis Chuang1-5/+6
2013-01-21Formatting.Francis Chuang1-1/+1
2013-01-21Fixed bug in JWTBearer Grant Type where the decoding key for the JWT is not ↵Francis Chuang3-22/+48
included in the clientData array.
2013-01-21Fix for expireAuthorizationCode() in Pdo.phpDavid Squier1-1/+1
Fix for 'PDOException' with message 'SQLSTATE[HY093]: Invalid parameter number: parameter was not defined' introduced in commit 42e626cce684e6aa9a64bfc94f6e4b9dc4a837cf
2013-01-21Fix for getRefreshToken() in Pdo.phpDavid Squier1-1/+1
Fix for 'PDOStatement::execute() expects parameter 1 to be array, string given' introduced by line 148 in commit 97bdd2ca13ae03415982cdab8965dc605b4882be
2013-01-20Updated documentation for JWTBearerInterface.Francis Chuang1-3/+2
2013-01-20JWTBearer storage interface does not need to extend the ClientInterface.Francis Chuang1-1/+1
2013-01-18Fixed casing of PHP keywords.Francis Chuang1-1/+1
2013-01-18Fixed casing of null in a few files.Francis Chuang3-7/+7
2013-01-18Formatted php docblocks.Francis Chuang1-5/+6
2013-01-18Fxied formatting.Francis Chuang2-17/+18
2013-01-18Updated documentation for JWTBearer grant type and also updated JWTBearer ↵Francis Chuang4-19/+85
grant type to require and check for the "sub" property in the JWT.
2013-01-18fixes #21 - adds 'expireAccessToken' to access token storage interfaceBrent Shaffer4-2/+32
2013-01-18creates Scope Util, addressess #34Brent Shaffer5-107/+108
2013-01-18merges PR, resolves conflicts, and resolves some formatting issuesBrent Shaffer7-15/+402
2013-01-18Fixed formatting to psr-2 standards.Francis Chuang1-1/+1
2013-01-18resolves php fatal error - interface was extending the wrong classBrent Shaffer1-1/+1
2013-01-18addresses #26 - adding newlines to the end of every fileBrent Shaffer29-29/+25
2013-01-18addresses #26 - PSR2 standards fixesBrent Shaffer6-9/+11
2013-01-18Fixed formatting.Francis Chuang1-2/+1
2013-01-18Converted OAuth2_Util_JWT to non static and updated JWTBearer grant type and ↵Francis Chuang2-9/+17
its tests.
2013-01-18addresses #26 - fixes name of ResponseType_AuthorizationCodeInterfaceBrent Shaffer2-2/+2
2013-01-18Updated formatting to compile with psr-2.Francis Chuang1-2/+2
2013-01-17Replaced SQL sprintf's with data bindings to allow use with Postgresql PDO ↵KodoArkivo1-12/+12
backend.
2013-01-16Created JWT library for decoding, encoding and verifying JWTs.Francis Chuang1-0/+114