[Laravel] socialite package
socialite
install
composer require laravel/socialite
Configuration
config/services.php를 오픈 후 각각의 정보를 입력한다.
'github' => [
'client_id' => env('GITHUB_CLIENT_ID'),
'client_secret' => env('GITHUB_CLIENT_SECRET'),
'redirect' => 'http://example.com/callback-url',
],
'google' => [
'client_id' => env('GOOGLE_CLIENT_ID'), // Your GOOGLE Client ID
'client_secret' => env('GOOGLE_CLIENT_SECRET'), // Your GOOGLE Client Secret
'redirect' => env('GOOGLE_REDIRECT'),
],
google 에서 client id와 secret 획득방법
google 은 https://console.cloud.google.com/ 에서 아래 정보를 가져올 수 있다.
google client id와 secret 획득 참조
- google > client_id : .....apps.googleusercontent.com
- google > client_secret: GOCSPX-......