-
Notifications
You must be signed in to change notification settings - Fork 442
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
composer require socialiteproviders/twitter SocialiteProviders\Twitter\Provider does not extend Laravel\Socialite\Two\AbstractProvider #1193
Comments
My AppServiceProvider.php : public function boot(): void
{
Event::listen(function (\SocialiteProviders\Manager\SocialiteWasCalled $event) {
$event->extendSocialite('discord', \SocialiteProviders\Discord\Provider::class);
$event->extendSocialite('twitter', \SocialiteProviders\Twitter\Provider::class);
});
} |
Our twitter provider is a oauth v1 provider, which i'm guessing is why it's giving an error. |
Is there a reason why you can't use the offical socialite provider? |
Hi @atymic, sorry for the delay in replying, I hadn't seen your answer ! Here is my stacktrace https://flareapp.io/share/dPbD43A5 |
@atymic I might have figured out a solution. Can you please look at a closely related discussion I created? |
I am facing the same https://prnt.sc/7BCKbYMgx7PC Can anyone guide me |
I had the same issue, but with Discogs OAuth. Apparently, Discogs uses OAuth 1, and as @boradatti mentioned in the linked discussion thread, AppServiceProvider.php public function boot(): void
{
Event::listen(function (\SocialiteProviders\Manager\SocialiteWasCalled $event) {
$event->extendSocialite('discogs', \SocialiteProviders\Discogs\Provider::class, \SocialiteProviders\Discogs\Server::class);
});
} |
Any news about this issue? 🙄 |
当我使用twitter提供者会提示出错
The text was updated successfully, but these errors were encountered: