From 825b009d03b0e0ede53fcd7784a73483b664f54f Mon Sep 17 00:00:00 2001 From: Nirav Sutariya Date: Mon, 16 Feb 2026 15:20:56 +0530 Subject: [PATCH] Update ConnectionVerifier.php In service file you mentioned key google not youtube.. It was fialed when daily verify command will run. --- app/Services/Social/ConnectionVerifier.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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()) {