Jump to content

vusal5555

New Members
  • Posts

    2
  • Joined

  • Last visited

Everything posted by vusal5555

  1. What does it mean by bad credentials though? if it is credentials like client id and client secret, I have already defined them in my env file and checked by logging them in the tinker console.
  2. 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\"} "}
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.