[Laravel] socialite package

[Laravel] socialite package updated_at: 2024-08-06 11:20

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-......

github 에서 client id와 secret 획득방법

github client id와 secret 획득 참조

평점을 남겨주세요
평점 : 5.0
총 투표수 : 1

질문 및 답글