PHP code example of alexsoft / laravel-socialite-bitbucket
1. Go to this page and download the library: Download alexsoft/laravel-socialite-bitbucket 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/ */
alexsoft / laravel-socialite-bitbucket example snippets
'providers' => [
// Other service providers
Alexsoft\LaravelSocialiteBitbucket\Provider::class,
]
namespace App\Http\Controllers\Auth;
use Socialite;
class AuthController extends Controller
{
/**
* Redirect the user to the Bitbucket authentication page.
*
* @return Response
*/
public function redirectToProvider()
{
return Socialite::driver('bitbucket2')->redirect();
}
/**
* Obtain the user information from GitHub.
*
* @return Response
*/
public function handleProviderCallback()
{
$user = Socialite::driver('bitbucket2')->user();
// $user->token;
}
}