Hi to everyone. I have been trying to implement social auth into application. I defined github and google auth credentials in my .env file. I access them in my services.php
'github' => [
'client_id' => env('GITHUB_CLIENT_ID'),
'client_secret' => env('GITHUB_CLIENT_SECRET'),
'redirect' => '/auth/github/callback',
],
'google' => [
'client_id' => env('GOOGLE_CLIENT_ID'),
'client_secret' => env('GOOGLE_CLIENT_SECRET'),
'redirect' => '/auth/google/callback',
],
Here is my controller as well
<?php
namespace App\Http\Controllers;
use Laravel\Socialite\Facades\Socialite;
class ProviderController extends Controller
{
public function redirect($provider)
{
return Socialite::driver($provider)->redirect();
}
public function callback($provider)
{
$user = Socialite::driver($provider)->user();
dd($user);
}
}
When I try to hit these two endpoints I receive the above error.
Route::get('/auth/{provider}/redirect', [\App\Http\Controllers\ProviderController::class, 'redirect'])->name('github.redirect');
Route::get('/auth/{provider}/callback', [\App\Http\Controllers\ProviderController::class, 'callback']);
I checked my enviroment variables and ran the tinker command and have access to them. I also cleared the cache. when I logged the error I got this message
[2024-10-18 05:06:24] local.ERROR: Authentication error: {"provider":"github","message":"Client error: `GET https://api.github.com/user` resulted in a `401 Unauthorized` response:
{\"message\":\"Bad credentials\",\"documentation_url\":\"https://docs.github.com/rest\",\"status\":\"401\"}
"}