Download the PHP package hernandev/oauth2-sc2 without Composer
On this page you can find all versions of the php package hernandev/oauth2-sc2. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download hernandev/oauth2-sc2
More information about hernandev/oauth2-sc2
Files in hernandev/oauth2-sc2
Package oauth2-sc2
Short Description SteemConnect V2 Oauth client provider.
License MIT
Informations about the package oauth2-sc2
SteemConnect V2: OAuth2 Client / Provider
This library is a simple, easy implement OAuth2 client for SteemConnect V2 clients.
It takes the pain from integrating and parsing all the specifics and delivers a great authorization flow for those who aim to handle authorization through SteemConnect V2.
0. Why?
Well, OAuth2 is not that complicated, this project started while building a SteemConnect V2 SDK for PHP, so this project is the Authorization part of another package coming on the next days.
1. Installation.
All you need to do is install this library as a dependency on your project, through composer:
2. Usage:
Before using thins library, keep in mind you'll need a SteemConnect application client ID and secret.
2.1. Configuring:
It could not be more simple. Just create a config instance, passing your application credentials:
After setting your credentials, you will need to decide with scopes you will ask permission to:
If you are not sure about the scopes you will need, those are documented on the SteemConnect wiki.
Finally, we will configure, to which URL the user should return, after granting you the permissions:
2.2. Redirecting to Authorization:
That was really, all you need to configure to use the library, pretty cool ham?
Now, of course, you need to redirect the users, to SteemConnect where they will authorize you to act on their behalf.
// finally, we can get the redirect URL, so we can send users to SteemConnect:
2.3. Parsing the Return:
Guess what? super hard to do:
You will need both the config and provider code used before, so I assume you will be clever and put that logic on a common place.
On the previous call, $token is an instance of AccessToken
class, which can be used for the following things:
2.4. Storing Tokens.
After obtained a given user's Access Token, in most cases, you will need to store the tokens for later usage.
Whatever the approach for storing the tokens (browser session / database), you will need to serialize the tokens and later, decode then.
This can be easily done, by two methods on the Provider:
Encoding:
Decoding:
2.5. Refreshing Expired Tokens.
Whenever the offline
scope is used to issue a token, the resulting AccessToken
instance will contain
a field called `refresh_token. The refresh token can be used for issuing a new one.
To issue a new token, using a existing one, that contains a refresh token, just do:
OR
If you only stored the refresh_token field value, you may use that string directly, by doing:
2.5. Extras:
Of course there are extras!
This library implements the ResourceOwner
interface, which means you can also query right away some information about the account which granted you permissions:
That's All Folks!
All versions of oauth2-sc2 with dependencies
php Version >=7.1.0
ext-curl Version *
ext-json Version *
illuminate/support Version ^5.6
symfony/http-foundation Version ^4.0
guzzlehttp/guzzle Version ^6.3