Releases: zf-fr/zfr-oauth2-server
Releases · zf-fr/zfr-oauth2-server
v0.4.0
- Allow multiple redirect URI for client (there is a minor table schema change, as a consequence)
- Fix a potential security issue by being more restrictive on the redirect URI when creating an authorization code. Now, if someone send a custom redirect_uri in the query params, the OAuth2 server will first check if the given redirect URI is in the list of the authorized redirect URIs by the client. If that's not the case, an InvalidRequest exception will be returned, and no authorization code will be generated.
v0.3.0
v0.2.0
- [BC] The
isRequestValid
from the ResourceServer is now gone in favour of a simpler approach: you just need to call thegetAccessToken
from the ResourceServer (with optional scopes), and null will be returned if the token is either expired, does not exist or does not match given scopes.