Download the PHP package datahivedevelopment/hiveidsocialiteprovider without Composer
On this page you can find all versions of the php package datahivedevelopment/hiveidsocialiteprovider. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download datahivedevelopment/hiveidsocialiteprovider
More information about datahivedevelopment/hiveidsocialiteprovider
Files in datahivedevelopment/hiveidsocialiteprovider
Package hiveidsocialiteprovider
Short Description Hive ID OAuth2 Provider for Laravel Socialite
License MIT
Informations about the package hiveidsocialiteprovider
DataHive Development's Hive ID
Quick Setup
1. Add to providers[]
array in config\app.php
2. Add Event Listener in app/Providers/EventServiceProvider
3. Add configuration to config/services.php
Step-by-step
1. Installation
2. Service Provider
-
Remove
Laravel\Socialite\SocialiteServiceProvider
from yourproviders[]
array inconfig\app.php
if you have added it already. - Add
\SocialiteProviders\Manager\ServiceProvider::class
to yourproviders[]
array inconfig\app.php
.
For example:
- Note: If you would like to use the Socialite Facade, you need to install it.
3. Event Listener
-
Add
SocialiteProviders\Manager\SocialiteWasCalled
event to yourlisten[]
array inapp/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
'DataHiveDevelopment\\HiveIDSocialiteProvider\\HiveIDExtendSocialite@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
You will need to add an entry to the services configuration file so that after config files are cached for usage in production environment (Laravel command artisan config:cache
) all config is still available.
Add to config/services.php
Server
configuration value
You can specify an optional HIVEID_SERVER
in your .env file to override using the production Hive ID authentication system. This is most useful during development and needing to test a modification to Hive ID with another application. The value should be entered in the format of http://id.test
, note the lack of a trailing /
. The /oauth/authorize
and /oauth/token
endpoints will automatically be appended on the appropriate API calls.
5. 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.
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
;