Twitter OAuth1 Provider for Laravel Socialite

Maintainers

👁 m1guelpf

Package info

github.com/SocialiteProviders/Twitter

Issues

Documentation

pkg:composer/socialiteproviders/twitter

Statistics

Installs: 1 428 569

Dependents: 8

Suggesters: 0

Stars: 24

4.1.2 2023-05-25 23:12 UTC

Requires

Requires (Dev)

None

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT 54ddc36c1475bbdc111a89edee1468e3c9cf1229

  • Brian Faust <hello.woop@brianfaust.de>

oauthtwitterproviderlaravelsocialite

This package is auto-updated.

Last update: 2026-06-21 13:41:24 UTC


README

composer require socialiteproviders/twitter

Installation & Basic Usage

Please see the Base Installation Guide, then follow the provider specific instructions below.

Add configuration to config/services.php

'twitter' => [ 
 'client_id' => env('TWITTER_CLIENT_ID'), 
 'client_secret' => env('TWITTER_CLIENT_SECRET'), 
 'redirect' => env('TWITTER_REDIRECT_URI') 
],

Enable Sign in With Twitter

You will need to enable 3-legged OAuth in the Twitter Developers Dashboard. Make sure to also add your callback URL.

Add provider event listener

Laravel 11+

In Laravel 11, the default EventServiceProvider provider was removed. Instead, add the listener using the listen method on the Event facade, in your AppServiceProvider boot method.

  • Note: You do not need to add anything for the built-in socialite providers unless you override them with your own providers.
Event::listen(function (\SocialiteProviders\Manager\SocialiteWasCalled $event) {
 $event->extendSocialite('twitter', \SocialiteProviders\Twitter\Provider::class, \SocialiteProviders\Twitter\Server::class);
});

Usage

You should now be able to use the provider like you would regularly use Socialite (assuming you have the facade installed):

return Socialite::driver('twitter')->redirect();

Returned User fields

  • id
  • nickname
  • name
  • email
  • avatar