PHP code example of socialiteproviders / buffer

1. Go to this page and download the library: Download socialiteproviders/buffer library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

socialiteproviders / buffer example snippets


'buffer' => [    
  'client_id' => env('BUFFER_CLIENT_ID'),  
  'client_secret' => env('BUFFER_CLIENT_SECRET'),  
  'redirect' => env('BUFFER_REDIRECT_URI') 
],

Event::listen(function (\SocialiteProviders\Manager\SocialiteWasCalled $event) {
    $event->extendSocialite('buffer', \SocialiteProviders\Buffer\Provider::class);
});

protected $listen = [
    \SocialiteProviders\Manager\SocialiteWasCalled::class => [
        // ... other providers
        \SocialiteProviders\Buffer\BufferExtendSocialite::class.'@handle',
    ],
];

return Socialite::driver('buffer')->redirect();