Download the PHP package conquer/oauth2 without Composer
On this page you can find all versions of the php package conquer/oauth2. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download conquer/oauth2
More information about conquer/oauth2
Files in conquer/oauth2
Package oauth2
Short Description The Oauth2 Server extension for the Yii2 framework
License MIT
Homepage https://github.com/borodulin/yii2-oauth2-server
Informations about the package oauth2
Yii2 OAuth 2.0 Server
Description
This extension provides simple implementation of Oauth 2.0 specification using Yii2 framework.
Installation
The preferred way to install this extension is through composer.
To install, either run
or add
to the section of your composer.json
file.
Migrations are available from migrations folder.
To add migrations to your application, edit the console config file to configure a namespaced migration:
Then issue the migrate/up
command:
You also need to specify message translation source for this package:
Usage
OAuth 2.0 Authorization usage
Api controller sample
Sample client config
If you want to use Resource Owner Password Credentials Grant,
implement \conquer\oauth2\OAuth2IdentityInterface
.
Warning
As official documentation says:
Since this access token request utilizes the resource owner's password, the authorization server MUST protect the endpoint against brute force attacks (e.g., using rate-limitation or generating alerts).
It's strongly recommended to rate limits on token endpoint. Fortunately, Yii2 have instruments to do this.
For further information see Yii2 Ratelimiter
License
conquer/oauth2 is released under the MIT License. See the bundled LICENSE
for details.