Skip to main content

All Questions

0 votes
1 answer
1k views

Error Laravel\Socialite\Two\InvalidStateException In the callback method from the Google side

I want use Socialite package but receive in Error ! controller codes : namespace App\Http\Controllers\Auth; use App\Http\Controllers\Controller; use App\User; use Laravel\Socialite\Facades\Socialite; ...
Ali Salehi's user avatar
1 vote
1 answer
622 views

Bad request issue for laravel socialite

I am trying to implement laravel socialite for google. I am using laravel 5.5. Here i am using "laravel/socialite": "^5.3", Also generated credentials from https://console.cloud....
Minak's user avatar
  • 51
0 votes
1 answer
276 views

URL Blocked: This redirect failed because the redirect URI is not whitelisted in the app’s Client OAuth Settings bin laravel; Socialite

I'm using socialite for facebook login but i'm getting this error In services.php i have 'facebook' => [ 'client_id' => 'XXXXXXXXXX', 'client_secret' => 'XXXXXXXXXXXXXXX', ...
user3653474's user avatar
  • 3,709
2 votes
0 answers
168 views

Cannot get user to select account before login using facebook socialite

I'm using socialite for facebook login but the issue is if i'm already login in facebook account then before login it should force user to select pop up this code is working for google login but i ...
user3653474's user avatar
  • 3,709
-1 votes
1 answer
695 views

login through specific guard using socialite in laravel

I have this function for google login function : public function loginWithGoogle() { try { $googleUser = Socialite::driver('google')->user(); $user = User::...
user3653474's user avatar
  • 3,709
0 votes
1 answer
2k views

Callback 404 not found in login with google with Socialite

I have this link on my modal popup <li><a href="{{ route('auth/google') }}" target="_blank"><i class="fab fa-google-plus-g"></i></a></li&...
user3653474's user avatar
  • 3,709
5 votes
2 answers
2k views

Does Google login in Laravel Socialite contain user's phone number?

I implemented Google login using Socialite in Laravel. The example I used only contains the user's name, google_id, email and profile picture. Is there a way to get the phone number from the Google ...
stilinski254's user avatar
1 vote
1 answer
1k views

400 invalid_request error in google social login using Socialite

public function handleProviderCallback() { $user = Socialite::driver('google')->user(); $rootFolder = null; \Storage::extend('google', function($app, $config) use ($user, $...
Padma Ettamshetty's user avatar
2 votes
1 answer
2k views

Google authentication in php/laravel error: Error: invalid_request Invalid parameter value for redirect_uri: Missing authority

I'm trying to build a simple authentication system in my php/laravel app with Google auth using Socialite package, based on this post, but I'm getting the following error on the browser: my google ...
Ali HS's user avatar
  • 99
0 votes
0 answers
159 views

Laravel socialite doesn't return user array

I am using socialite to login with facebook with my Laravel site. When I am trying $user = Socialite::driver($services)->user(); Then $user returning an empty array But if I use $user = ...
tarek nasif's user avatar
0 votes
1 answer
457 views

Linkedin login in laravel using socialite give error

I have used socialite & laravel 5.6 I think I need to use LinkedIn API v2 but I don't know how to update API v2 in socialite or any other solution to use v2
Natvarsinh Parmar - bapu's user avatar
1 vote
0 answers
1k views

How to link a Social Media account using Laravel Socialite

I'm using Laravel Socialite to let the user login using fb, twitter or google which works well. But, there's part of the application that allows the user to link its other social account if they also ...
Eem Jee's user avatar
  • 1,309
0 votes
0 answers
671 views

How to login user with Laravel Socialite (LinkedIn)

I'm getting user Information after sign in LinkedIn with laravel Socialite package. I'm using lumen, after confirming the permissions from login screen it's giving me error. Although I have set my ...
Muhammad's user avatar
  • 377
2 votes
0 answers
469 views

Laravel socialite callback method doesn't work

I'm trying to add Facebook authetication via SocialiteProviders, but it looks like method redirectToProvider does work, but handleProviderCallback doesn't. So it redirects me to the facebook/vk page, ...
music_junkie's user avatar
5 votes
4 answers
3k views

Auth::login() not working properly laravel 5.7

I'm trying to setup 'Login with facebook' using laravel socialite. When I try to login, it gets a successful callback from the facebook, I'm storing the data fetched into the database and try to ...
Ujjwal Verma's user avatar

15 30 50 per page
1
2 3 4 5
13