I am trying to use login with facebook in laravel 5 using Socialize.
Here is my route file code.
Route::get(\'fb\', function ($face
Try setting the correct values in the 'domain'
field of config/session.php
and the 'url'
field of the config/app.php
. This seems to have done the trick for me. I noted that the value in session.php
should be without http://
, while the one in app.php
should be with http://
.
Also, I recommend you follow this guide: https://laracasts.com/series/whats-new-in-laravel-5/episodes/9. It's extremely helpful and clear.