Question about Social OAuth
I would like to know if the OAuth in the auth/setup is just an indicator that I installed the credentials of the socials and to just display the buttons for individual socials?
I'm quite confused because when setting up OAuth like google for example. It requires a callback. I'm not sure where to point the callback when setting up the callback from the google.
Hey!
All of the Socail OAuth functinality is part of the Laravel Socialite package:
This is where all of the functionality comes from including the callback handle logic.
The callback route specifically is available at auth/{driver}/callback
:
php artisan route:list | grep call
GET|HEAD auth/{driver}/callback .............................................................. Devdojo\Auth › SocialController@callback
For more information you can check out the documentation of the auth package itself here:
Let me know if you have any questions!
- Bobby