2017 © Pedro Peláez
 

library socialite-odnoklassniki

Odnoklassniki OAuth2 Provider for Laravel Socialite

image

jhaoda/socialite-odnoklassniki

Odnoklassniki OAuth2 Provider for Laravel Socialite

  • Friday, May 19, 2017
  • by JhaoDa
  • Repository
  • 5 Watchers
  • 36 Stars
  • 28,023 Installations
  • PHP
  • 5 Dependents
  • 0 Suggesters
  • 17 Forks
  • 0 Open issues
  • 8 Versions
  • 14 % Grown

The README.md

Odnoklassniki OAuth2 Provider for Laravel Socialite

1. Installation

composer require jhaoda/socialite-odnoklassniki, (*1)

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 to your providers[] array in config\app.php.

For example:, (*2)

'providers' => [
    // a whole bunch of providers
    // remove 'Laravel\Socialite\SocialiteServiceProvider',
    SocialiteProviders\Manager\ServiceProvider::class, // add
];
  • 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::class event to your listen[] array in <app_name>/Providers/EventServiceProvider., (*3)

  • Add your listeners (i.e. the ones from the providers) to the SocialiteProviders\Manager\SocialiteWasCalled[] that you just created., (*4)

  • The listener that you add for this provider is JhaoDa\SocialiteProviders\Odnoklassniki\OdnoklassnikiExtendSocialite::class., (*5)

  • Note: You do not need to add anything for the built-in socialite providers unless you override them with your own providers., (*6)

For example:, (*7)

/**
 * The event handler mappings for the application.
 *
 * @var array
 */
protected $listen = [
    \SocialiteProviders\Manager\SocialiteWasCalled::class => [
        \JhaoDa\SocialiteProviders\Odnoklassniki\OdnoklassnikiExtendSocialite::class
    ],
];

4. Services Array and .env

Add to config/services.php:, (*8)

'odnoklassniki' => [
    'client_id' => env('ODNOKLASSNIKI_ID'),
    'client_secret' => env('ODNOKLASSNIKI_SECRET'),
    'client_public' => env('ODNOKLASSNIKI_PUBLIC'),
    'redirect' => env('ODNOKLASSNIKI_REDIRECT'),  
],

Append provider values to your .env file: Note: Add both public and secret keys!, (*9)

// other values above
ODNOKLASSNIKI_ID=your_app_id_for_the_service
ODNOKLASSNIKI_PUBLIC=your_app_public_for_the_service
ODNOKLASSNIKI_SECRET=your_app_secret_for_the_service
ODNOKLASSNIKI_REDIRECT=https://example.com/login

The Versions

19/05 2017

dev-master

9999999-dev

Odnoklassniki OAuth2 Provider for Laravel Socialite

  Sources   Download

MIT

The Requires

 

17/05 2017

v3.0.2

3.0.2.0

Odnoklassniki OAuth2 Provider for Laravel Socialite

  Sources   Download

MIT

The Requires

 

17/05 2017

v3.0.1

3.0.1.0

Odnoklassniki OAuth2 Provider for Laravel Socialite

  Sources   Download

MIT

The Requires

 

26/01 2017

v3.0.0

3.0.0.0

Odnoklassniki OAuth2 Provider for Laravel Socialite

  Sources   Download

MIT

The Requires

 

29/04 2016

v2.0.1

2.0.1.0

Odnoklassniki OAuth2 Provider for Laravel Socialite

  Sources   Download

MIT

The Requires

 

28/04 2016

v2.0

2.0.0.0

Odnoklassniki OAuth2 Provider for Laravel Socialite

  Sources   Download

MIT

The Requires

 

02/07 2015

v1.1.0

1.1.0.0

Odnoklassniki OAuth2 Provider for Laravel Socialite

  Sources   Download

MIT

The Requires

 

26/04 2015

v1.0.0

1.0.0.0

Odnoklassniki OAuth2 Provider for Laravel Socialite

  Sources   Download

MIT

The Requires