So I am having the same problem as this user here : Laravel Socialite Facebook Login Error: The parameter app_id is required
and I have followed the solution give to this user. but I still get the same error. even tried changing clinet_id to app_id.. nothing has changed the same error
The parameter app_id is required
'facebook' => [
'client_id' => 'hidden', //Facebook App Client ID
'client_secret' => 'hidden', // Your Facebook App Client Secret
'redirect' => 'http://localhost:8000/login/facebook/callback', // Your application route used to redirect users back to your app after authentication
],
route:
Route::get('login/facebook', 'Auth\LoginController@redirectToProvider');
Route::get('login/facebook/callback', 'Auth\LoginController@handleProviderCallback');
I cant see whats wrong here. added everything. from the documentation. in service the facade. what can be my mistake here? I feel its fairly obvious but I cant see it