4

Socialite was working just fine until I updated to Laravel 5.5. I am getting a:

\Socialite\Two\InvalidStateException

The Whoops page error on line 209 from /Users/marcellopato/Sites/cepcar/vendor/laravel/socialite/src/Two/AbstractProvider.php:

if ($this->hasInvalidState()) {
    throw new InvalidStateException;
}
halfer
  • 19,824
  • 17
  • 99
  • 186
Marcello Pato
  • 500
  • 6
  • 21

1 Answers1

9

Try this, I'm using Laravel 5.5:

return Socialite::driver('google')->stateless()->user();

https://laravel.com/docs/5.5/socialite#stateless-authentication

halfer
  • 19,824
  • 17
  • 99
  • 186
jrran90
  • 668
  • 12
  • 18