Download the PHP package recca0120/laravelpassport-provider without Composer
On this page you can find all versions of the php package recca0120/laravelpassport-provider. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download recca0120/laravelpassport-provider
More information about recca0120/laravelpassport-provider
Files in recca0120/laravelpassport-provider
Package laravelpassport-provider
Short Description LaravelPassport OAuth2 Provider for Laravel Socialite
License MIT
Informations about the package laravelpassport-provider
Laravel Passport Provider
INSTALLATION
1.COMPOSER
2. SERVICE PROVIDER
- Remove Laravel\Socialite\SocialiteServiceProvider from your providers[] array in config\app.php if you have added it already.
- Add \SocialiteProviders\Manager\ServiceProvider::class to your providers[] array in config\app.php.
For example:
- Note: If you would like to use the Socialite Facade, you need to install it.
3. ADD THE EVENT AND LISTENERS
-
Add SocialiteProviders\Manager\SocialiteWasCalled event to your listen[] array in
/Providers/EventServiceProvider. -
Add your listeners (i.e. the ones from the providers) to the SocialiteProviders\Manager\SocialiteWasCalled[] that you just created.
-
The listener that you add for this provider is 'SocialiteProviders\HumanApi\HumanApiExtendSocialite@handle',.
- Note: You do not need to add anything for the built-in socialite providers unless you override them with your own providers.
For example:
REFERENCE
4. CONFIGURATION SETUP
For development purpose, needed configuration is automatically retrieved from your .env if they are written as exactly shown below. However we recommend to manually add an entry to the services configuration file because after config files are cached for usage in production environment (Laravel command artisan config:cache), values stored in the .env file are not accessible anymore by the application and the provider won’t work.
APPEND PROVIDER VALUES TO YOUR **.ENV** FILE
ADD TO **CONFIG/SERVICES.PHP**.
REFERENCE
USAGE
- You should now be able to use it like you would regularly use Socialite (assuming you have the facade installed):
LUMEN SUPPORT
You can use Socialite providers with Lumen. Just make sure that you have facade support turned on and that you follow the setup directions properly.
Note: If you are using this with Lumen, all providers will automatically be stateless since Lumen does not keep track of state.
Also, configs cannot be parsed from the services[] in Lumen. You can only set the values in the .env file as shown exactly in this document. If needed, you can also override a config (shown below).
STATELESS
- You can set whether or not you want to use the provider as stateless. Remember that the OAuth provider (Twitter, Tumblr, etc) must support whatever option you choose.
Note: If you are using this with Lumen, all providers will automatically be stateless since Lumen does not keep track of state.
OVERRIDING A CONFIG
If you need to override the provider’s environment or config variables dynamically anywhere in your application, you may use the following:
RETRIEVING THE ACCESS TOKEN RESPONSE BODY
Laravel Socialite by default only allows access to the access_token. Which can be accessed via the \Laravel\Socialite\User->token public property. Sometimes you need access to the whole response body which may contain items such as a refresh_token.
You can get the access token response body, after you called the user() method in Socialite, by accessing the property $user->accessTokenResponseBody;
laravelpassport
REFERENCE