You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to get external authentication to work on my Laravel 10 website.
I've installed Laravel Socialite and got the built-in Google sign-in method to work without too much effort.
In order to get Apple sign-in to work, I've installed the Apple Socialite provider (https://socialiteproviders.com/Apple/) and followed all the configuration instructions, but when my controller tries to handle the Socialite redirect:
return Socialite::driver('apple')->redirect();
...I get the error:
Driver [apple] not supported.
Here's the in addition to the basic Socialite setup, here's the Apple-specific configuration I've done so far:
Added an apple section to config/services.php and added client_id, client_secret, and redirect to it
Added 'SocialiteProviders\Manager\ServiceProvider::class' to Providers array in config/app.php
Added this to the $listen array in app/Providers/EventServiceProvider.php:
'artisan event:clear' fixed this up - events were being cached which apparently kept changes to app/Providers/EventServiceProvider.php from being read.
I'm trying to get external authentication to work on my Laravel 10 website.
I've installed Laravel Socialite and got the built-in Google sign-in method to work without too much effort.
In order to get Apple sign-in to work, I've installed the Apple Socialite provider (https://socialiteproviders.com/Apple/) and followed all the configuration instructions, but when my controller tries to handle the Socialite redirect:
return Socialite::driver('apple')->redirect();
...I get the error:
Driver [apple] not supported.
Here's the in addition to the basic Socialite setup, here's the Apple-specific configuration I've done so far:
I've run php artisan config:cache and route:cache multiple times.
I know this is a simple mistake - anyone see this before and figured it out? Found some older similar posts but they didn't work for me.
Thanks!!
The text was updated successfully, but these errors were encountered: