summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)AuthorFilesLines
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 client...Francis Chuang1-1/+1
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
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
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 i...Francis Chuang3-22/+48
2013-01-21Fix for expireAuthorizationCode() in Pdo.phpDavid Squier1-1/+1
2013-01-21Fix for getRefreshToken() in Pdo.phpDavid Squier1-1/+1
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 gra...Francis Chuang4-19/+85
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
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 ba...KodoArkivo1-12/+12
2013-01-16Created JWT library for decoding, encoding and verifying JWTs.Francis Chuang1-0/+114
2013-01-16Updated storage drivers to support JWT bearer authorization grant.Francis Chuang2-4/+22
2013-01-16Implemented ClientAssertionTypeInterface as per bshaffer's suggestion and upd...Francis Chuang2-14/+39
2013-01-16Implemented JWT bearer authorization grant.Francis Chuang2-0/+223
2013-01-01addresses #19 - uses headers instead of server when looking for AUTHORIZATION...Brent Shaffer1-1/+1
2012-12-20fixes #11 - only returns refresh tokens at the expected timesBrent Shaffer9-29/+75
2012-12-17fixes #16 - removes redundant WWW-Authenticate headerBrent Shaffer1-1/+1
2012-12-11Merge pull request #13 from javigs/masterBrent Shaffer2-3/+3
2012-12-11Merge branch 'develop' of github.com:bshaffer/oauth2-server-php into developBrent Shaffer1-17/+49
2012-12-11adds 'content' property - fixes #15Brent Shaffer1-0/+1
2012-12-02Pass refresh_token_lifetime to override defaultjavigs1-2/+2
2012-12-02Missing $config paramsjavigs1-1/+1
2012-12-02add PDO storage support for refresh tokensDavid Squier1-17/+49
2012-11-16fixes issue #5 - adds interface for getUserDetails so that tokenData can cont...Brent Shaffer8-9/+35
2012-11-12allows for dependency injection of request object (to allow for HttpFoundatio...Brent Shaffer18-70/+75
2012-10-31AuthCode validation - ensures provided url is decoded before comparisionBrent Shaffer1-1/+1