diff --git a/app/Services/Social/ConnectionVerifier.php b/app/Services/Social/ConnectionVerifier.php index 0a2710b..16daa60 100644 --- a/app/Services/Social/ConnectionVerifier.php +++ b/app/Services/Social/ConnectionVerifier.php @@ -182,8 +182,8 @@ private function refreshYouTubeToken(SocialAccount $account): void $response = Http::asForm()->post('https://oauth2.googleapis.com/token', [ 'grant_type' => 'refresh_token', 'refresh_token' => $account->refresh_token, - 'client_id' => config('services.youtube.client_id'), - 'client_secret' => config('services.youtube.client_secret'), + 'client_id' => config('services.google.client_id'), + 'client_secret' => config('services.google.client_secret'), ]); if ($response->failed()) {