Package Data | |
---|---|
Maintainer Username: | m1guelpf |
Maintainer Contact: | hello@brianfaust.de (Brian Faust) |
Package Create Date: | 2015-02-21 |
Package Last Update: | 2024-11-07 |
Home Page: | https://socialiteproviders.com/VKontakte/ |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-22 03:06:04 |
Package Statistics | |
---|---|
Total Downloads: | 824,774 |
Monthly Downloads: | 9,879 |
Daily Downloads: | 424 |
Total Stars: | 85 |
Total Watchers: | 9 |
Total Forks: | 31 |
Total Open Issues: | 1 |
composer require socialiteproviders/vkontakte
Please see the Base Installation Guide, then follow the provider specific instructions below.
config/services.php
.'vkontakte' => [
'client_id' => env('VKONTAKTE_CLIENT_ID'),
'client_secret' => env('VKONTAKTE_CLIENT_SECRET'),
'redirect' => env('VKONTAKTE_REDIRECT_URI')
],
Configure the package's listener to the listen for SocialiteWasCalled
events.
Add the event to your listen[]
array in app/Providers/EventServiceProvider
. See the Base Installation Guide for detailed instructions.
protected $listen = [
\SocialiteProviders\Manager\SocialiteWasCalled::class => [
// ... other providers
'SocialiteProviders\\VKontakte\\VKontakteExtendSocialite@handle',
],
];
You should now be able to use the provider like you would regularly use Socialite (assuming you have the facade installed):
return Socialite::with('vkontakte')->redirect();